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:
parent
47c2257f82
commit
314d01b35f
3 changed files with 5 additions and 5 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1,4 +0,0 @@
|
|||
module \test
|
||||
wire output 1 \a
|
||||
wire output 2 \b
|
||||
end
|
||||
4
tests/various/setundef_selection_undriven.v
Normal file
4
tests/various/setundef_selection_undriven.v
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
module test;
|
||||
wire a;
|
||||
wire b;
|
||||
endmodule
|
||||
Loading…
Add table
Add a link
Reference in a new issue