mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 01:18:10 +02:00
10 lines
180 B
Verilog
10 lines
180 B
Verilog
module top;
|
|
reg [1:0] sel;
|
|
wire [7:0] out;
|
|
example e(sel, out);
|
|
integer i = 0;
|
|
initial
|
|
for (i = 0; i < 10; i = i + 1)
|
|
#1 sel = i;
|
|
endmodule
|