mirror of https://github.com/zachjs/sv2v.git
12 lines
209 B
Verilog
12 lines
209 B
Verilog
|
|
module top;
|
||
|
|
reg signed [31:0] inp;
|
||
|
|
wire signed [31:0] out;
|
||
|
|
Example e(inp, out);
|
||
|
|
initial begin
|
||
|
|
#1 inp = 1;
|
||
|
|
#1 inp = 5;
|
||
|
|
#1 inp = 10;
|
||
|
|
#1 inp = 7;
|
||
|
|
end
|
||
|
|
endmodule
|