1
0
mirror of synced 2026-04-25 20:02:10 +00:00
Files
YosysHQ.yosys/tests/verilog/fcall_smoke.ys
2025-08-12 12:59:31 +02:00

16 lines
326 B
Plaintext

read_verilog -sv <<EOT
module smoke_initstate (
input resetn,
input clk,
input a
);
always @(posedge clk) begin
assert property ($stable(a));
assert property ($changed(a));
assert property ($rose(a));
assert property ($fell(a));
assume(resetn == !$initstate);
end
endmodule
EOT