Files

12 lines
166 B
Systemverilog
Raw Permalink Normal View History

2021-07-09 10:34:35 -04:00
module top;
reg x;
wire y;
assign #5 y = x;
initial begin
#1 x = 0;
#1 x = 1;
#20 x = 0;
#20 x = 1;
end
endmodule