3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-23 13:25:31 +00:00

WIP: Integrate stages into the taskloop

This commit is contained in:
Jannis Harder 2022-08-19 16:58:33 +02:00
parent bd88454d7d
commit badbde2fbf
2 changed files with 72 additions and 2 deletions

View file

@ -0,0 +1,19 @@
[options]
mode bmc
stage_hack yup
[engines]
smtbmc
[script]
read -formal stage_hack.sv
prep -top top
[file stage_hack.sv]
module top(input clk, output x);
assign x = 1;
endmodule