4 lines
64 B
Verilog
4 lines
64 B
Verilog
module test(output out, input in);
|
|
|
|
assign out = +in;
|
|
endmodule
|