mirror of https://github.com/zachjs/sv2v.git
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
|