diff options
Diffstat (limited to '')
| -rw-r--r-- | hdl/top.sv | 16 |
1 files changed, 8 insertions, 8 deletions
| @@ -155,19 +155,19 @@ module top | |||
| 155 | 155 | ||
| 156 | bit command_ready; | 156 | bit command_ready; |
| 157 | bit command_valid; | 157 | bit command_valid; |
| 158 | ram_command_t command_data; | 158 | arb_to_ram_t command_data; |
| 159 | 159 | ||
| 160 | bit ram_command_ready; | 160 | bit ram_command_ready; |
| 161 | bit ram_command_valid; | 161 | bit ram_command_valid; |
| 162 | ram_command_t ram_command_data; | 162 | arb_to_ram_t ram_command_data; |
| 163 | 163 | ||
| 164 | bit ram_response_ready; | 164 | bit ram_response_ready; |
| 165 | bit ram_response_valid; | 165 | bit ram_response_valid; |
| 166 | ram_read_response_t ram_response_data; | 166 | ram_to_arb_t ram_response_data; |
| 167 | 167 | ||
| 168 | bit print_ready; | 168 | bit print_ready; |
| 169 | bit print_valid; | 169 | bit print_valid; |
| 170 | ram_read_response_t print_data; | 170 | ram_to_arb_t print_data; |
| 171 | 171 | ||
| 172 | bit loop_ready; | 172 | bit loop_ready; |
| 173 | bit loop_valid; | 173 | bit loop_valid; |
| @@ -175,11 +175,11 @@ module top | |||
| 175 | 175 | ||
| 176 | bit [`NUM_PDPS-1:0] pdp_command_ready; | 176 | bit [`NUM_PDPS-1:0] pdp_command_ready; |
| 177 | bit [`NUM_PDPS-1:0] pdp_command_valid; | 177 | bit [`NUM_PDPS-1:0] pdp_command_valid; |
| 178 | pdp_command_t [`NUM_PDPS-1:0] pdp_command_data; | 178 | core_to_mem_t [`NUM_PDPS-1:0] pdp_command_data; |
| 179 | 179 | ||
| 180 | bit [`NUM_PDPS-1:0] pdp_response_ready; | 180 | bit [`NUM_PDPS-1:0] pdp_response_ready; |
| 181 | bit [`NUM_PDPS-1:0] pdp_response_valid; | 181 | bit [`NUM_PDPS-1:0] pdp_response_valid; |
| 182 | pdp_read_response_t [`NUM_PDPS-1:0] pdp_response_data; | 182 | mem_to_core_t [`NUM_PDPS-1:0] pdp_response_data; |
| 183 | 183 | ||
| 184 | bit ram_rwds_oe; | 184 | bit ram_rwds_oe; |
| 185 | bit ram_rwds_out; | 185 | bit ram_rwds_out; |
| @@ -476,11 +476,11 @@ module top | |||
| 476 | 476 | ||
| 477 | bit cache_command_ready; | 477 | bit cache_command_ready; |
| 478 | bit cache_command_valid; | 478 | bit cache_command_valid; |
| 479 | pdp_command_t cache_command_data; | 479 | core_to_mem_t cache_command_data; |
| 480 | 480 | ||
| 481 | bit cache_response_ready; | 481 | bit cache_response_ready; |
| 482 | bit cache_response_valid; | 482 | bit cache_response_valid; |
| 483 | pdp_read_response_t cache_response_data; | 483 | mem_to_core_t cache_response_data; |
| 484 | 484 | ||
| 485 | `ifdef NO_L1_CACHE | 485 | `ifdef NO_L1_CACHE |
| 486 | assign cache_command_ready = pdp_command_ready[i]; | 486 | assign cache_command_ready = pdp_command_ready[i]; |
