mirror of https://github.com/zachjs/sv2v.git
12 lines
166 B
Systemverilog
12 lines
166 B
Systemverilog
|
|
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
|