summaryrefslogtreecommitdiff
path: root/hdl/core.sv
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--hdl/core.sv7
1 files changed, 4 insertions, 3 deletions
diff --git a/hdl/core.sv b/hdl/core.sv
index 587ffeb..5f264d9 100644
--- a/hdl/core.sv
+++ b/hdl/core.sv
@@ -16,11 +16,11 @@ module core
16 16
17 , input bit mem_command_ready 17 , input bit mem_command_ready
18 , output bit mem_command_valid 18 , output bit mem_command_valid
19 , output pdp_command_t mem_command 19 , output core_to_mem_t mem_command
20 20
21 , output bit mem_read_ready 21 , output bit mem_read_ready
22 , input bit mem_read_valid 22 , input bit mem_read_valid
23 , input pdp_read_response_t mem_read 23 , input mem_to_core_t mem_read
24 24
25 , input bit [2:0] switch_df 25 , input bit [2:0] switch_df
26 , input bit [2:0] switch_if 26 , input bit [2:0] switch_if
@@ -109,9 +109,10 @@ assign led_current_address = mem_command_valid;
109assign led_memaddr = mem_command.address[`PDP_ADDRESS_BITS-3-1:0]; 109assign led_memaddr = mem_command.address[`PDP_ADDRESS_BITS-3-1:0];
110 110
111assign mem_command.mask = ~0; 111assign mem_command.mask = ~0;
112assign mem_command.snoop_response = 0;
112 113
113bit mem_hold_valid; 114bit mem_hold_valid;
114pdp_read_response_t mem_hold; 115mem_to_core_t mem_hold;
115 116
116bit rx_ready; 117bit rx_ready;
117bit rx_valid; 118bit rx_valid;