blob: 5985cc9f784346830b366580284693ed4f222078 [file] [log] [blame]
/*
:name: event_control_edge
:description: event control
:should_fail: 0
:tags: 9.4.2
*/
module block_tb ();
reg [3:0] a = 0;
wire clk = 0;
always @(edge clk) a = ~a;
endmodule