From 641151b7123c4e5dbbb95392f65c0f3960fc0fef Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Sun, 10 Jul 2022 14:23:22 -0700 Subject: Rename memory message types for more clarity. --- hdl/mem_arbiter.sv | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'hdl/mem_arbiter.sv') 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 , output bit command_ready , input bit command_valid - , input ram_command_t command_data + , input arb_to_ram_t command_data , output bit [`NUM_PDPS-1:0] pdp_ready , input bit [`NUM_PDPS-1:0] pdp_valid - , input pdp_command_t [`NUM_PDPS-1:0] pdp_data + , input core_to_mem_t [`NUM_PDPS-1:0] pdp_data , input bit ram_ready , output bit ram_valid - , output ram_command_t ram_data + , output arb_to_ram_t ram_data ); bit [`NUM_PDPS:0] hold_valid; - ram_command_t [`NUM_PDPS:0] hold_data; + arb_to_ram_t [`NUM_PDPS:0] hold_data; bit [$clog2(`NUM_PDPS+1):0] selector; -- cgit v1.2.3