mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 06:03:23 +00:00
Added $meminit cell type
This commit is contained in:
parent
ef151b0b30
commit
910556560f
4 changed files with 33 additions and 1 deletions
|
@ -904,6 +904,15 @@ namespace {
|
|||
return;
|
||||
}
|
||||
|
||||
if (cell->type == "$meminit") {
|
||||
param("\\MEMID");
|
||||
param("\\PRIORITY");
|
||||
port("\\ADDR", param("\\ABITS"));
|
||||
port("\\DATA", param("\\WIDTH"));
|
||||
check_expected();
|
||||
return;
|
||||
}
|
||||
|
||||
if (cell->type == "$mem") {
|
||||
param("\\MEMID");
|
||||
param("\\SIZE");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue