4 lines
83 B
Verilog
4 lines
83 B
Verilog
module sub #(parameter d=1) (input in, output out);
|
|
assign out = in;
|
|
endmodule
|