changing some comments in the ram units

This commit is contained in:
msa417 2025-03-07 14:37:46 -08:00
parent 364a558314
commit fb2e807eb5
2 changed files with 2 additions and 2 deletions

View file

@ -45,7 +45,7 @@ module sdp_ram
localparam DATA_WIDTH = COL_WIDTH*NUM_COL;
(* cascade_height = CASCADE_DEPTH, ramstyle = "no_rw_check" *) //Higher depths use less resources but are slower
(* cascade_height = CASCADE_DEPTH, ramstyle = "no_rw_check", ram_style = "block" *) //Higher depths use less resources but are slower
logic[DATA_WIDTH-1:0] mem[(1<<ADDR_WIDTH)-1:0];
initial mem = '{default: '0};

View file

@ -50,7 +50,7 @@ module tdp_ram
localparam DATA_WIDTH = COL_WIDTH*NUM_COL;
(* cascade_height = CASCADE_DEPTH, ramstyle = "no_rw_check" *) //Higher depths use less resources but are slower
(* cascade_height = CASCADE_DEPTH, ramstyle = "no_rw_check", ram_style = "block" *) //Higher depths use less resources but are slower
logic[DATA_WIDTH-1:0] mem[(1<<ADDR_WIDTH)-1:0];
initial begin