mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 01:18:10 +02:00
12 lines
213 B
Verilog
12 lines
213 B
Verilog
module top;
|
|
reg data;
|
|
initial #1 $display("Interface %b", data);
|
|
initial #2 $display("Module %b", data);
|
|
initial begin
|
|
data = 0;
|
|
#1;
|
|
data = 1;
|
|
#1;
|
|
end
|
|
endmodule
|