diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-07-21 12:02:55 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-07-21 12:02:55 +0200 |
commit | 54b0f2e659ac0c34c69b0c251c72b2a90fe8e6b6 (patch) | |
tree | 14e1e4c9b7b9d015f4781405c1b77738ac5fcdf6 /kernel/rtlil.h | |
parent | caae6e19dffde4d76b30af3fd1f9751f4ec37fdc (diff) | |
download | yosys-54b0f2e659ac0c34c69b0c251c72b2a90fe8e6b6.tar.gz yosys-54b0f2e659ac0c34c69b0c251c72b2a90fe8e6b6.tar.bz2 yosys-54b0f2e659ac0c34c69b0c251c72b2a90fe8e6b6.zip |
Added module->remove(), module->addWire(), module->addCell(), cell->check()
Diffstat (limited to 'kernel/rtlil.h')
-rw-r--r-- | kernel/rtlil.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/kernel/rtlil.h b/kernel/rtlil.h index 64136de04..19666481d 100644 --- a/kernel/rtlil.h +++ b/kernel/rtlil.h @@ -290,12 +290,16 @@ struct RTLIL::Module { RTLIL::Wire *new_wire(int width, RTLIL::IdString name); void add(RTLIL::Wire *wire); void add(RTLIL::Cell *cell); + void remove(RTLIL::Cell *cell); void fixup_ports(); template<typename T> void rewrite_sigspecs(T functor); void cloneInto(RTLIL::Module *new_mod) const; virtual RTLIL::Module *clone() const; + RTLIL::Wire *addWire(RTLIL::IdString name, int width = 1); + RTLIL::Cell *addCell(RTLIL::IdString name, RTLIL::IdString type); + // The add* methods create a cell and return the created cell. All signals must exist in advance. RTLIL::Cell* addNot (RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed = false); @@ -449,6 +453,7 @@ struct RTLIL::Cell { std::map<RTLIL::IdString, RTLIL::Const> parameters; RTLIL_ATTRIBUTE_MEMBERS void optimize(); + void check(); template<typename T> void rewrite_sigspecs(T functor); }; |