diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-02-14 10:23:03 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-02-14 10:23:03 +0100 |
commit | 910556560fbf26df4f2960b7d94039a1f399f1a1 (patch) | |
tree | 0275d15fa8aa833995f68784f205b2842a0ccb48 /kernel/rtlil.cc | |
parent | ef151b0b30c7b7253aceba6d184e7721a4eff0c0 (diff) | |
download | yosys-910556560fbf26df4f2960b7d94039a1f399f1a1.tar.gz yosys-910556560fbf26df4f2960b7d94039a1f399f1a1.tar.bz2 yosys-910556560fbf26df4f2960b7d94039a1f399f1a1.zip |
Added $meminit cell type
Diffstat (limited to 'kernel/rtlil.cc')
-rw-r--r-- | kernel/rtlil.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 776625b9c..9fd3d2959 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -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"); |