3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2026-05-11 06:52:30 +00:00

Docs: Multi-line tag sections

This commit is contained in:
Krystine Sherwin 2026-05-05 17:51:49 +12:00
parent 1a27ba7b1b
commit ec27ee9627
No known key found for this signature in database
3 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,20 @@
./gen.sh -s bad
$ sby --dumptasks bad.sby
task1
task2
task3
$ sby --dumptags bad.sby
task1
task2
task3
task_1_or_2
task_1_or_3
$ sby --dumptags bad.sby task1
task1
task_1_or_2
task_1_or_3
$ sby --dumpcfg bad.sby task1
[options]
mode bmc
depth 100

View file

@ -0,0 +1,15 @@
[tasks]
task1 task_1_or_2 task_1_or_3
task2 task_1_or_2
task3 task_1_or_3
[options]
task_1_or_2:
mode bmc
depth 100
task3:
mode prove
[engines]
...