3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-04-26 05:43:34 +00:00

Merge pull request #5724 from abhinavputhran/fix/setundef-respect-selection

setundef: respect selection for cells, processes, and connections
This commit is contained in:
Emil J 2026-03-18 22:53:06 +00:00 committed by GitHub
commit 9746bd3897
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 84 additions and 12 deletions

View file

@ -0,0 +1,32 @@
# Test that setundef -zero respects wire selection: only selected wire is changed
read_verilog <<EOT
module test;
wire a = 1'bx;
wire b = 1'bx;
endmodule
EOT
setundef -zero w:a
sat -prove a 0
sat -enable_undef -prove b 0 -falsify
design -reset
# Test that setundef -undriven -zero respects wire selection
read_verilog setundef_selection_undriven.v
setundef -undriven -zero w:b
sat -prove b 0
sat -enable_undef -prove a 0 -falsify
design -reset
# Test that setundef -init respects cell selection: only selected FF gets init set
read_rtlil setundef_selection_ff.il
setundef -init -zero c:myff_a
select -assert-count 1 w:* a:init %i
select -assert-count 0 w:b a:init %i
design -reset
# Test that setundef -init works with wire selection
read_rtlil setundef_selection_ff.il
setundef -init -zero w:a
select -assert-count 1 w:* a:init %i
select -assert-count 0 w:b a:init %i
design -reset

View file

@ -0,0 +1,19 @@
module \test
wire input 1 \clk
wire output 2 \a
wire output 3 \b
cell $dff \myff_a
parameter \WIDTH 1
parameter \CLK_POLARITY 1'1
connect \D \a
connect \Q \a
connect \CLK \clk
end
cell $dff \myff_b
parameter \WIDTH 1
parameter \CLK_POLARITY 1'1
connect \D \b
connect \Q \b
connect \CLK \clk
end
end

View file

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