3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-06 22:34:07 +00:00

Merge pull request #146 from jix/aim_vs_smt2_nonzero_start_offset

Test and fix signals with nonzero start offsets in aim files with smtbmc
This commit is contained in:
Miodrag Milanović 2022-03-26 08:20:57 +01:00 committed by GitHub
commit 7a4a8e6bf6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 1 deletions

View file

@ -503,7 +503,7 @@ class SbyTask:
print("abc -g AND -fast", file=f)
print("opt_clean", file=f)
print("stat", file=f)
print("write_aiger -I -B -zinit -map design_aiger.aim design_aiger.aig", file=f)
print("write_aiger -I -B -zinit -no-startoffset -map design_aiger.aim design_aiger.aig", file=f)
proc = SbyProc(
self,

1
tests/.gitignore vendored
View file

@ -10,3 +10,4 @@
/junit_*/
/submod_props*/
/multi_assert*/
/aim_vs_smt2_nonzero_start_offset*/

View file

@ -0,0 +1,33 @@
[tasks]
bmc
prove
[options]
bmc: mode bmc
prove: mode prove
expect fail
wait on
[engines]
bmc: abc bmc3
bmc: abc sim3
prove: aiger avy
prove: aiger suprove
prove: abc pdr
[script]
read -sv test.sv
prep -top test
[file test.sv]
module test (
input clk,
input [8:1] nonzero_offset
);
reg [7:0] counter = 0;
always @(posedge clk) begin
if (counter == 3) assert(nonzero_offset[1]);
counter <= counter + 1;
end
endmodule