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_broadcast.sv | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'hdl/mem_broadcast.sv') diff --git a/hdl/mem_broadcast.sv b/hdl/mem_broadcast.sv index 720699b..599be28 100644 --- a/hdl/mem_broadcast.sv +++ b/hdl/mem_broadcast.sv @@ -6,19 +6,19 @@ module mem_broadcast , output bit ram_ready , input bit ram_valid - , input ram_read_response_t ram_data + , input ram_to_arb_t ram_data , input bit print_ready , output bit print_valid - , output ram_read_response_t print_data + , output ram_to_arb_t print_data , input bit [`NUM_PDPS-1:0] pdp_ready , output bit [`NUM_PDPS-1:0] pdp_valid - , output pdp_read_response_t [`NUM_PDPS-1:0] pdp_data + , output mem_to_core_t [`NUM_PDPS-1:0] pdp_data ); bit hold_valid; - ram_read_response_t hold_data; + ram_to_arb_t hold_data; always @(posedge clock) begin if (reset) begin -- cgit v1.2.3