mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 06:07:26 +02:00
Merge pull request #4733 from antmicro/fix-setundef-pass-for-params
Fix setting bits of parameters in setundef pass
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
module foo #(parameter [1:0] a) (output [1:0] o);
|
||||
assign o = a;
|
||||
endmodule
|
||||
|
||||
module top(output [1:0] o);
|
||||
foo #(2'b0x) foo(o);
|
||||
always_comb begin
|
||||
assert(o == 2'b00);
|
||||
end
|
||||
endmodule
|
||||
@@ -0,0 +1,8 @@
|
||||
read_verilog -sv setundef.sv
|
||||
setundef -zero -params
|
||||
hierarchy -top top
|
||||
flatten
|
||||
proc
|
||||
async2sync
|
||||
write_json
|
||||
sat -seq 5 -prove-asserts
|
||||
Reference in New Issue
Block a user