mirror of
https://github.com/openhwgroup/cva5.git
synced 2025-04-22 13:07:33 -04:00
typo fixed
This commit is contained in:
parent
4ec4d8c373
commit
e4259d0005
3 changed files with 3 additions and 3 deletions
|
@ -36,7 +36,7 @@ module lutram_1w_1r
|
|||
output logic[WIDTH-1:0] ram_data_out
|
||||
);
|
||||
|
||||
(* ramstyle = "MLAB, no_rw_check" *) logic [WIDTH-1:0] ram [DEPTH-1:0];
|
||||
(* ramstyle = "MLAB, no_rw_check", ram_style = "distributed" *) logic [WIDTH-1:0] ram [DEPTH-1:0];
|
||||
|
||||
initial ram = '{default: 0};
|
||||
always_ff @ (posedge clk) begin
|
||||
|
|
|
@ -75,7 +75,7 @@ module tlb_lut_ram
|
|||
//Reset is performed sequentially, coordinated by the gc unit
|
||||
|
||||
lfsr #(.WIDTH($clog2(DEPTH)))
|
||||
unordered_counter (
|
||||
lfsr_counter (
|
||||
.clk (clk), .rst (rst),
|
||||
.en(gc_tlb_flush),
|
||||
.value(flush_addr)
|
||||
|
|
|
@ -54,7 +54,7 @@ module toggle_memory_set
|
|||
|
||||
//counter for indexing through memories for post-reset clearing/initialization
|
||||
lfsr #(.WIDTH($clog2(DEPTH)))
|
||||
unordered_counter (
|
||||
lfsr_counter (
|
||||
.clk (clk), .rst (rst),
|
||||
.en(init_clear),
|
||||
.value(clear_index)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue