3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-21 05:13:40 +00:00

Add read_xaiger

This commit is contained in:
Eddie Hung 2019-02-11 15:19:17 -08:00
parent ecd2446132
commit 0124512f28
2 changed files with 106 additions and 25 deletions

View file

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