3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-02 03:36:56 +00:00

Cell evaluable fix.

This commit is contained in:
nella 2026-02-23 13:15:14 +01:00
parent 80cfa5141b
commit 4b657938dc
2 changed files with 24 additions and 24 deletions

View file

@ -68,7 +68,7 @@ def build_cell_table():
f = Features(is_tristate=True, is_cell_evaluable=True)
setup_type("$tribuf", ["A", "EN"], ["Y"], f)
f = Features()
f = Features(is_cell_evaluable=True)
setup_type("$assert", ["A", "EN"], [], f)
setup_type("$assume", ["A", "EN"], [], f)
setup_type("$live", ["A", "EN"], [], f)