3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-08-08 06:11:24 +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

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