diff options
Diffstat (limited to '')
| -rw-r--r-- | hdl/mem_arbiter.sv | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hdl/mem_arbiter.sv b/hdl/mem_arbiter.sv index 854867f..a9d7212 100644 --- a/hdl/mem_arbiter.sv +++ b/hdl/mem_arbiter.sv | |||
| @@ -6,19 +6,19 @@ module mem_arbiter | |||
| 6 | 6 | ||
| 7 | , output bit command_ready | 7 | , output bit command_ready |
| 8 | , input bit command_valid | 8 | , input bit command_valid |
| 9 | , input ram_command_t command_data | 9 | , input arb_to_ram_t command_data |
| 10 | 10 | ||
| 11 | , output bit [`NUM_PDPS-1:0] pdp_ready | 11 | , output bit [`NUM_PDPS-1:0] pdp_ready |
| 12 | , input bit [`NUM_PDPS-1:0] pdp_valid | 12 | , input bit [`NUM_PDPS-1:0] pdp_valid |
| 13 | , input pdp_command_t [`NUM_PDPS-1:0] pdp_data | 13 | , input core_to_mem_t [`NUM_PDPS-1:0] pdp_data |
| 14 | 14 | ||
| 15 | , input bit ram_ready | 15 | , input bit ram_ready |
| 16 | , output bit ram_valid | 16 | , output bit ram_valid |
| 17 | , output ram_command_t ram_data | 17 | , output arb_to_ram_t ram_data |
| 18 | ); | 18 | ); |
| 19 | 19 | ||
| 20 | bit [`NUM_PDPS:0] hold_valid; | 20 | bit [`NUM_PDPS:0] hold_valid; |
| 21 | ram_command_t [`NUM_PDPS:0] hold_data; | 21 | arb_to_ram_t [`NUM_PDPS:0] hold_data; |
| 22 | 22 | ||
| 23 | bit [$clog2(`NUM_PDPS+1):0] selector; | 23 | bit [$clog2(`NUM_PDPS+1):0] selector; |
| 24 | 24 | ||
