3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 09:05:32 +00:00

Added "dffinit", Support for initialized Xilinx DFF

This commit is contained in:
Clifford Wolf 2015-04-04 19:00:15 +02:00
parent b0c0ede879
commit c52a4cdeed
6 changed files with 132 additions and 8 deletions

View file

@ -474,6 +474,7 @@ struct RTLIL::Const
std::string decode_string() const;
inline int size() const { return bits.size(); }
inline RTLIL::State operator[](int index) { return bits.at(index); }
inline unsigned int hash() const {
unsigned int h = mkhash_init;