3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-09 14:51:26 +00:00

New "none" engine to be used with the "make_model" option

This commit is contained in:
Jannis Harder 2022-08-05 15:51:11 +02:00
parent 231f0b80aa
commit 3412ea859b
6 changed files with 26 additions and 4 deletions

View file

@ -37,5 +37,8 @@ def run(task):
import sby_engine_btor
sby_engine_btor.run("cover", task, engine_idx, engine)
elif engine[0] == "none":
pass
else:
task.error(f"Invalid engine '{engine[0]}' for cover mode.")