From 27978501a87c5bb7a9fd78e376e8f6772cad009e Mon Sep 17 00:00:00 2001 From: Alejandro Soto Date: Mon, 25 Sep 2023 05:08:58 -0600 Subject: rtl/cache: implement wait-for-reply --- rtl/cache/sram.sv | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rtl/cache/sram.sv') 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 -- cgit v1.2.3