blob: 5dac699d239272b4086b7412467406db124bef0c [file] [log] [blame]
module top(clk, in, out);
parameter DEPTH=10;
input wire clk, in;
output reg out;
always @(posedge clk)
assert($changed(in) == (in != $past(in)));
endmodule