mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 01:18:10 +02:00
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
|