diff options
| author | Julian Blake Kongslie | 2022-07-10 14:23:22 -0700 |
|---|---|---|
| committer | Julian Blake Kongslie | 2022-07-10 14:23:22 -0700 |
| commit | 641151b7123c4e5dbbb95392f65c0f3960fc0fef (patch) | |
| tree | d918278edf3b4218097d125d013e4be35b92be5c /hdl/core.sv | |
| parent | Update PLAN. (diff) | |
| download | multipdp8-641151b7123c4e5dbbb95392f65c0f3960fc0fef.tar.xz | |
Rename memory message types for more clarity.
Diffstat (limited to '')
| -rw-r--r-- | hdl/core.sv | 7 |
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; | |||
| 109 | assign led_memaddr = mem_command.address[`PDP_ADDRESS_BITS-3-1:0]; | 109 | assign led_memaddr = mem_command.address[`PDP_ADDRESS_BITS-3-1:0]; |
| 110 | 110 | ||
| 111 | assign mem_command.mask = ~0; | 111 | assign mem_command.mask = ~0; |
| 112 | assign mem_command.snoop_response = 0; | ||
| 112 | 113 | ||
| 113 | bit mem_hold_valid; | 114 | bit mem_hold_valid; |
| 114 | pdp_read_response_t mem_hold; | 115 | mem_to_core_t mem_hold; |
| 115 | 116 | ||
| 116 | bit rx_ready; | 117 | bit rx_ready; |
| 117 | bit rx_valid; | 118 | bit rx_valid; |
