3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-29 23:43:16 +00:00

Use ConstEval to compute LUT masks

This commit is contained in:
Eddie Hung 2019-02-13 17:00:00 -08:00
parent f0f5d8a5cc
commit 13bf036bd6
2 changed files with 69 additions and 63 deletions

View file

@ -44,8 +44,8 @@ struct AigerReader
AigerReader(RTLIL::Design *design, std::istream &f, RTLIL::IdString module_name, RTLIL::IdString clk_name, std::string map_filename, bool wideports);
void parse_aiger();
void parse_xaiger();
void parse_aiger_ascii(bool create_and);
void parse_aiger_binary(bool create_and);
void parse_aiger_ascii();
void parse_aiger_binary();
};
YOSYS_NAMESPACE_END