mirror of
https://github.com/openhwgroup/cva5.git
synced 2025-04-24 05:57:22 -04:00
changing some comments in the ram units
This commit is contained in:
parent
364a558314
commit
fb2e807eb5
2 changed files with 2 additions and 2 deletions
|
@ -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};
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue