3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-22 20:32:07 +00:00

libparse: support space ANDs

This commit is contained in:
Emil J. Tywoniak 2025-07-11 23:09:30 +02:00
parent 4b1a8a3b66
commit c6e1d461fa
3 changed files with 32 additions and 19 deletions

View file

@ -93,6 +93,9 @@ namespace Yosys
static LibertyExpression parse(Lexer &s, int min_prio = 0);
void get_pin_names(pool<std::string>& names);
bool eval(dict<std::string, bool>& values);
std::string str(int indent = 0);
private:
static bool is_nice_binop(char c);
};
class LibertyInputStream {