Get it to ACTUALLY compile :)

This commit is contained in:
2026-05-24 20:30:34 -07:00
parent 6c6c3d295b
commit cdbb6a9720
6 changed files with 76 additions and 498 deletions

View File

@@ -1,11 +1,15 @@
module application_wrapper_cache_lru #(
// This should be NUM_WAYS - 1
parameter LRU_W = 3,
parameter NUM_SETS = 64
parameter NUM_SETS = 64,
localparam INDEX_W = $clog2(NUM_SETS)
) (
input logic i_clk,
input logic [INDEX_W-1:0] i_read_index,
input logic i_read_valid,
output logic [LRU_W-1:0] o_read_data,
output logic [LRU_W-1:0] o_read_data,
input logic [INDEX_W-1:0] i_write_index,
input logic i_write_valid,