improve some indentation in src/Top.bsv
This commit is contained in:
parent
95631e77b8
commit
423ea6142e
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -8,6 +8,8 @@
|
|||
# files generated from building/simulating core
|
||||
compile.log
|
||||
build_v
|
||||
build_b_sim
|
||||
mkSim_b_sim
|
||||
verilog_RTL
|
||||
|
||||
# generated experiment outputs
|
||||
|
|
|
@ -81,10 +81,11 @@ module mkSim(Empty);
|
|||
endrule
|
||||
|
||||
rule core_char_device_o;
|
||||
write_char_to_terminal(core.get_char);
|
||||
write_char_to_terminal(core.get_char);
|
||||
endrule
|
||||
|
||||
rule core_char_device_i(is_char_available() == 1);
|
||||
core.put_char(get_char_from_terminal());
|
||||
core.put_char(get_char_from_terminal());
|
||||
endrule
|
||||
|
||||
// Rule to finish the simulation when count reaches 6
|
||||
|
|
Loading…
Reference in a new issue