diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-03-15 14:35:29 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-03-15 14:35:29 +0100 |
commit | b7c71d92f6003dcd626f58a0cf06f43c6a3b8d4c (patch) | |
tree | e98344d8c5dd8dfce37f3f59ad2c03bf760ebbd6 /kernel/rtlil.h | |
parent | e37d672ae7dc47952bac483afb85aae32cb727f6 (diff) | |
download | yosys-b7c71d92f6003dcd626f58a0cf06f43c6a3b8d4c.tar.gz yosys-b7c71d92f6003dcd626f58a0cf06f43c6a3b8d4c.tar.bz2 yosys-b7c71d92f6003dcd626f58a0cf06f43c6a3b8d4c.zip |
Added RTLIL::Module::add{Dff,Dffsr,Adff,Dlatch}Gate() API
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r-- | kernel/rtlil.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index e55a88eba..44142bf29 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -357,6 +357,13 @@ struct RTLIL::Module { RTLIL::Cell* addOrGate (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y); RTLIL::Cell* addXorGate (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y); RTLIL::Cell* addMuxGate (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_s, RTLIL::SigSpec sig_y); + + RTLIL::Cell* addDffGate (RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool clk_polarity = true); + RTLIL::Cell* addDffsrGate (RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_set, RTLIL::SigSpec sig_clr, + RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool clk_polarity = true, bool set_polarity = true, bool clr_polarity = true); + RTLIL::Cell* addAdffGate (RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_arst, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, + bool arst_value = false, bool clk_polarity = true, bool arst_polarity = true); + RTLIL::Cell* addDlatchGate (RTLIL::IdString name, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool en_polarity = true); }; struct RTLIL::Wire { |