diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-08-16 12:54:52 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-08-16 12:54:52 +0200 |
commit | ff50bc2ac304fcec5746939e155dcac2b01665df (patch) | |
tree | 4f96a536b767e09ccd0f9fa41703616904354723 /kernel/celltypes.h | |
parent | ae09c89f626d48bb2fa274903a220d32170b033e (diff) | |
download | yosys-ff50bc2ac304fcec5746939e155dcac2b01665df.tar.gz yosys-ff50bc2ac304fcec5746939e155dcac2b01665df.tar.bz2 yosys-ff50bc2ac304fcec5746939e155dcac2b01665df.zip |
Added $tribuf and $_TBUF_ cell types
Diffstat (limited to 'kernel/celltypes.h')
-rw-r--r-- | kernel/celltypes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kernel/celltypes.h b/kernel/celltypes.h index 229f80b71..f36833446 100644 --- a/kernel/celltypes.h +++ b/kernel/celltypes.h @@ -112,6 +112,8 @@ struct CellTypes setup_type("$alu", {A, B, CI, BI}, {X, Y, CO}, true); setup_type("$fa", {A, B, C}, {X, Y}, true); + setup_type("$tribuf", {A, EN}, {Y}, true); + setup_type("$assert", {A, EN}, pool<RTLIL::IdString>(), true); setup_type("$assume", {A, EN}, pool<RTLIL::IdString>(), true); setup_type("$equiv", {A, B}, {Y}, true); @@ -166,6 +168,7 @@ struct CellTypes setup_type("$_OAI3_", {A, B, C}, {Y}, true); setup_type("$_AOI4_", {A, B, C, D}, {Y}, true); setup_type("$_OAI4_", {A, B, C, D}, {Y}, true); + setup_type("$_TBUF_", {A, E}, {Y}, true); } void setup_stdcells_mem() |