summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hdl/core.sv18
1 files changed, 10 insertions, 8 deletions
diff --git a/hdl/core.sv b/hdl/core.sv
index c0e1a63..eceea78 100644
--- a/hdl/core.sv
+++ b/hdl/core.sv
@@ -9,11 +9,12 @@ module core
9 9
10 , input bit switch_cont 10 , input bit switch_cont
11 11
12 , output bit [0:ADDR_BITS-1] led_pc 12 // verilator lint_off UNDRIVEN
13 , output bit [0:ADDR_BITS-1] led_memaddr 13 , output bit [ADDR_BITS-1:0] led_pc
14 , output bit [0:DATA_BITS-1] led_memdata 14 , output bit [ADDR_BITS-1:0] led_memaddr
15 , output bit [0:DATA_BITS-1] led_acc 15 , output bit [DATA_BITS-1:0] led_memdata
16 , output bit [0:DATA_BITS-1] led_mq 16 , output bit [DATA_BITS-1:0] led_acc
17 , output bit [DATA_BITS-1:0] led_mq
17 , output bit led_and 18 , output bit led_and
18 , output bit led_tad 19 , output bit led_tad
19 , output bit led_isz 20 , output bit led_isz
@@ -31,10 +32,11 @@ module core
31 , output bit led_ion 32 , output bit led_ion
32 , output bit led_pause 33 , output bit led_pause
33 , output bit led_run 34 , output bit led_run
34 , output bit [0:4] led_step_counter 35 , output bit [4:0] led_step_counter
35 , output bit [0:2] led_df 36 , output bit [2:0] led_df
36 , output bit [0:2] led_if 37 , output bit [2:0] led_if
37 , output bit led_link 38 , output bit led_link
39 // verilator lint_on UNDRIVEN
38 ); 40 );
39 41
40bit run; 42bit run;