summaryrefslogtreecommitdiff
path: root/rtl/cache/sram.sv
diff options
context:
space:
mode:
authorAlejandro Soto <alejandro@34project.org>2023-09-25 05:08:58 -0600
committerAlejandro Soto <alejandro@34project.org>2023-09-25 05:08:58 -0600
commit27978501a87c5bb7a9fd78e376e8f6772cad009e (patch)
tree8bf436e3e3db094cdd62b0a386a833dc84a8bf60 /rtl/cache/sram.sv
parent79b3a4f57f269f6243177a1bf0073646fef61413 (diff)
rtl/cache: implement wait-for-reply
Diffstat (limited to '')
-rw-r--r--rtl/cache/sram.sv6
1 files changed, 3 insertions, 3 deletions
diff --git a/rtl/cache/sram.sv b/rtl/cache/sram.sv
index 2e6c6ce..986c09b 100644
--- a/rtl/cache/sram.sv
+++ b/rtl/cache/sram.sv
@@ -23,9 +23,9 @@ module cache_sram
localparam DEPTH = 1 << $bits(addr_index);
- line data_file[DEPTH];
- addr_tag tag_file[DEPTH];
- line_state state_file[DEPTH];
+ line data_file[DEPTH] /*verilator public*/;
+ addr_tag tag_file[DEPTH] /*verilator public*/;
+ line_state state_file[DEPTH] /*verilator public*/;
always_ff @(posedge clk) begin
if (write_data) begin