|
RTLIL_ATTRIBUTE_MEMBERS | Module () |
|
virtual | ~Module () |
|
virtual RTLIL::IdString | derive (RTLIL::Design *design, std::map< RTLIL::IdString, RTLIL::Const > parameters) |
|
virtual size_t | count_id (RTLIL::IdString id) |
|
virtual void | check () |
|
virtual void | optimize () |
|
void | connect (const RTLIL::SigSig &conn) |
|
void | connect (const RTLIL::SigSpec &lhs, const RTLIL::SigSpec &rhs) |
|
void | new_connections (const std::vector< RTLIL::SigSig > &new_conn) |
|
const std::vector
< RTLIL::SigSig > & | connections () const |
|
void | fixup_ports () |
|
template<typename T > |
void | rewrite_sigspecs (T functor) |
|
void | cloneInto (RTLIL::Module *new_mod) const |
|
virtual RTLIL::Module * | clone () const |
|
bool | has_memories () const |
|
bool | has_processes () const |
|
bool | has_memories_warn () const |
|
bool | has_processes_warn () const |
|
std::vector< RTLIL::Wire * > | selected_wires () const |
|
std::vector< RTLIL::Cell * > | selected_cells () const |
|
template<typename T > |
bool | selected (T *member) const |
|
RTLIL::Wire * | wire (RTLIL::IdString id) |
|
RTLIL::Cell * | cell (RTLIL::IdString id) |
|
RTLIL::ObjRange< RTLIL::Wire * > | wires () |
|
RTLIL::ObjRange< RTLIL::Cell * > | cells () |
|
void | remove (const std::set< RTLIL::Wire * > &wires) |
|
void | remove (RTLIL::Cell *cell) |
|
void | rename (RTLIL::Wire *wire, RTLIL::IdString new_name) |
|
void | rename (RTLIL::Cell *cell, RTLIL::IdString new_name) |
|
void | rename (RTLIL::IdString old_name, RTLIL::IdString new_name) |
|
void | swap_names (RTLIL::Wire *w1, RTLIL::Wire *w2) |
|
void | swap_names (RTLIL::Cell *c1, RTLIL::Cell *c2) |
|
RTLIL::IdString | uniquify (RTLIL::IdString name) |
|
RTLIL::IdString | uniquify (RTLIL::IdString name, int &index) |
|
RTLIL::Wire * | addWire (RTLIL::IdString name, int width=1) |
|
RTLIL::Wire * | addWire (RTLIL::IdString name, const RTLIL::Wire *other) |
|
RTLIL::Cell * | addCell (RTLIL::IdString name, RTLIL::IdString type) |
|
RTLIL::Cell * | addCell (RTLIL::IdString name, const RTLIL::Cell *other) |
|
RTLIL::Cell * | addNot (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addPos (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addNeg (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addAnd (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addOr (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addXor (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addXnor (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addReduceAnd (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addReduceOr (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addReduceXor (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addReduceXnor (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addReduceBool (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addShl (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addShr (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addSshl (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addSshr (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addShift (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addShiftx (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addLt (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addLe (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addEq (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addNe (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addEqx (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addNex (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addGe (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addGt (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addAdd (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addSub (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addMul (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addDiv (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addMod (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addPow (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool a_signed=false, bool b_signed=false) |
|
RTLIL::Cell * | addLogicNot (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addLogicAnd (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addLogicOr (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed=false) |
|
RTLIL::Cell * | addMux (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_s, RTLIL::SigSpec sig_y) |
|
RTLIL::Cell * | addPmux (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_s, RTLIL::SigSpec sig_y) |
|
RTLIL::Cell * | addSlice (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, RTLIL::Const offset) |
|
RTLIL::Cell * | addConcat (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y) |
|
RTLIL::Cell * | addLut (RTLIL::IdString name, RTLIL::SigSpec sig_i, RTLIL::SigSpec sig_o, RTLIL::Const lut) |
|
RTLIL::Cell * | addAssert (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_en) |
|
RTLIL::Cell * | addSr (RTLIL::IdString name, RTLIL::SigSpec sig_set, RTLIL::SigSpec sig_clr, RTLIL::SigSpec sig_q, bool set_polarity=true, bool clr_polarity=true) |
|
RTLIL::Cell * | addDff (RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool clk_polarity=true) |
|
RTLIL::Cell * | addDffe (RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool clk_polarity=true, bool en_polarity=true) |
|
RTLIL::Cell * | addDffsr (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 * | addAdff (RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_arst, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, RTLIL::Const arst_value, bool clk_polarity=true, bool arst_polarity=true) |
|
RTLIL::Cell * | addDlatch (RTLIL::IdString name, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool en_polarity=true) |
|
RTLIL::Cell * | addDlatchsr (RTLIL::IdString name, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_set, RTLIL::SigSpec sig_clr, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool en_polarity=true, bool set_polarity=true, bool clr_polarity=true) |
|
RTLIL::Cell * | addNotGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_y) |
|
RTLIL::Cell * | addAndGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_y) |
|
RTLIL::Cell * | addNandGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_y) |
|
RTLIL::Cell * | addOrGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_y) |
|
RTLIL::Cell * | addNorGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_y) |
|
RTLIL::Cell * | addXorGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_y) |
|
RTLIL::Cell * | addXnorGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_y) |
|
RTLIL::Cell * | addMuxGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_s, RTLIL::SigBit sig_y) |
|
RTLIL::Cell * | addAoi3Gate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_c, RTLIL::SigBit sig_y) |
|
RTLIL::Cell * | addOai3Gate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_c, RTLIL::SigBit sig_y) |
|
RTLIL::Cell * | addAoi4Gate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_c, RTLIL::SigBit sig_d, RTLIL::SigBit sig_y) |
|
RTLIL::Cell * | addOai4Gate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_c, RTLIL::SigBit sig_d, RTLIL::SigBit 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 * | addDffeGate (RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool clk_polarity=true, bool en_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) |
|
RTLIL::Cell * | addDlatchsrGate (RTLIL::IdString name, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_set, RTLIL::SigSpec sig_clr, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool en_polarity=true, bool set_polarity=true, bool clr_polarity=true) |
|
RTLIL::SigSpec | Not (RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed=false) |
|
RTLIL::SigSpec | Pos (RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed=false) |
|
RTLIL::SigSpec | Bu0 (RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed=false) |
|
RTLIL::SigSpec | Neg (RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed=false) |
|
RTLIL::SigSpec | And (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Or (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Xor (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Xnor (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | ReduceAnd (RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed=false) |
|
RTLIL::SigSpec | ReduceOr (RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed=false) |
|
RTLIL::SigSpec | ReduceXor (RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed=false) |
|
RTLIL::SigSpec | ReduceXnor (RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed=false) |
|
RTLIL::SigSpec | ReduceBool (RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed=false) |
|
RTLIL::SigSpec | Shl (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Shr (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Sshl (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Sshr (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Shift (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Shiftx (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Lt (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Le (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Eq (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Ne (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Eqx (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Nex (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Ge (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Gt (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Add (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Sub (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Mul (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Div (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Mod (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Pow (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool a_signed=false, bool b_signed=false) |
|
RTLIL::SigSpec | LogicNot (RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed=false) |
|
RTLIL::SigSpec | LogicAnd (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | LogicOr (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed=false) |
|
RTLIL::SigSpec | Mux (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_s) |
|
RTLIL::SigSpec | Pmux (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_s) |
|
RTLIL::SigBit | NotGate (RTLIL::IdString name, RTLIL::SigBit sig_a) |
|
RTLIL::SigBit | AndGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b) |
|
RTLIL::SigBit | NandGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b) |
|
RTLIL::SigBit | OrGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b) |
|
RTLIL::SigBit | NorGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b) |
|
RTLIL::SigBit | XorGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b) |
|
RTLIL::SigBit | XnorGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b) |
|
RTLIL::SigBit | MuxGate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_s) |
|
RTLIL::SigBit | Aoi3Gate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_c) |
|
RTLIL::SigBit | Oai3Gate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_c) |
|
RTLIL::SigBit | Aoi4Gate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_c, RTLIL::SigBit sig_d) |
|
RTLIL::SigBit | Oai4Gate (RTLIL::IdString name, RTLIL::SigBit sig_a, RTLIL::SigBit sig_b, RTLIL::SigBit sig_c, RTLIL::SigBit sig_d) |
|