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_cache.sv | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'hdl/mem_cache.sv') diff --git a/hdl/mem_cache.sv b/hdl/mem_cache.sv index 2257a4f..181d8d7 100644 --- a/hdl/mem_cache.sv +++ b/hdl/mem_cache.sv @@ -10,19 +10,19 @@ module mem_cache , output bit core_command_ready , input bit core_command_valid - , input pdp_command_t core_command_data + , input core_to_mem_t core_command_data , input bit ram_command_ready , output bit ram_command_valid - , output pdp_command_t ram_command_data + , output core_to_mem_t ram_command_data , output bit ram_response_ready , input bit ram_response_valid - , input pdp_read_response_t ram_response_data + , input mem_to_core_t ram_response_data , input bit core_response_ready , output bit core_response_valid - , output pdp_read_response_t core_response_data + , output mem_to_core_t core_response_data ); localparam ADDRESS_TAG_LO = $clog2(`RAM_LINE_WORDS)+SET_BITS; -- cgit v1.2.3