mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-08 04:43:20 +02:00
10 lines
182 B
Verilog
10 lines
182 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
|