summaryrefslogtreecommitdiff
path: root/hdl/mem_cache.sv
diff options
context:
space:
mode:
authorJulian Blake Kongslie2022-07-10 14:23:22 -0700
committerJulian Blake Kongslie2022-07-10 14:23:22 -0700
commit641151b7123c4e5dbbb95392f65c0f3960fc0fef (patch)
treed918278edf3b4218097d125d013e4be35b92be5c /hdl/mem_cache.sv
parentUpdate PLAN. (diff)
downloadmultipdp8-641151b7123c4e5dbbb95392f65c0f3960fc0fef.tar.xz
Rename memory message types for more clarity.
Diffstat (limited to '')
-rw-r--r--hdl/mem_cache.sv8
1 files changed, 4 insertions, 4 deletions
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
10 10
11 , output bit core_command_ready 11 , output bit core_command_ready
12 , input bit core_command_valid 12 , input bit core_command_valid
13 , input pdp_command_t core_command_data 13 , input core_to_mem_t core_command_data
14 14
15 , input bit ram_command_ready 15 , input bit ram_command_ready
16 , output bit ram_command_valid 16 , output bit ram_command_valid
17 , output pdp_command_t ram_command_data 17 , output core_to_mem_t ram_command_data
18 18
19 , output bit ram_response_ready 19 , output bit ram_response_ready
20 , input bit ram_response_valid 20 , input bit ram_response_valid
21 , input pdp_read_response_t ram_response_data 21 , input mem_to_core_t ram_response_data
22 22
23 , input bit core_response_ready 23 , input bit core_response_ready
24 , output bit core_response_valid 24 , output bit core_response_valid
25 , output pdp_read_response_t core_response_data 25 , output mem_to_core_t core_response_data
26 ); 26 );
27 27
28 localparam ADDRESS_TAG_LO = $clog2(`RAM_LINE_WORDS)+SET_BITS; 28 localparam ADDRESS_TAG_LO = $clog2(`RAM_LINE_WORDS)+SET_BITS;