3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00
yosys/tests/opt/opt_clean_init.ys
2021-03-15 17:16:53 +01:00

23 lines
238 B
Plaintext

read_verilog << EOT
module top(...);
input [1:0] D;
input C;
output O;
reg [1:0] Q;
initial Q = 0;
always @(posedge C)
Q <= D;
assign O = Q[1];
endmodule
EOT
synth
check -assert -initdrv
select -assert-count 1 a:init=2'b0x