mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-24 01:25:33 +00:00
Added WORDS parameter to $meminit
This commit is contained in:
parent
3860c9a9f2
commit
8d6d5c30d9
6 changed files with 95 additions and 16 deletions
|
@ -1536,11 +1536,12 @@ module \$meminit (ADDR, DATA);
|
|||
parameter MEMID = "";
|
||||
parameter ABITS = 8;
|
||||
parameter WIDTH = 8;
|
||||
parameter WORDS = 1;
|
||||
|
||||
parameter PRIORITY = 0;
|
||||
|
||||
input [ABITS-1:0] ADDR;
|
||||
input [WIDTH-1:0] DATA;
|
||||
input [WORDS*WIDTH-1:0] DATA;
|
||||
|
||||
initial begin
|
||||
if (MEMID != "") begin
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue