3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-03-19 11:33:11 +00:00

changed rtlil to verilog. setundef_selection_ff stays rtlil because we use specific cell names if write in verilog yosys assign name that can change

This commit is contained in:
abhinavputhran 2026-03-08 20:14:03 -04:00
parent 47c2257f82
commit 314d01b35f
3 changed files with 5 additions and 5 deletions

View file

@ -11,7 +11,7 @@ sat -enable_undef -prove b 0 -falsify
design -reset
# Test that setundef -undriven -zero respects wire selection
read_rtlil setundef_selection_undriven.il
read_verilog setundef_selection_undriven.v
setundef -undriven -zero w:b
sat -prove b 0
sat -enable_undef -prove a 0 -falsify

View file

@ -1,4 +0,0 @@
module \test
wire output 1 \a
wire output 2 \b
end

View file

@ -0,0 +1,4 @@
module test;
wire a;
wire b;
endmodule