5 lines
82 B
Verilog
5 lines
82 B
Verilog
module test(input in, output out);
|
|
//no buffer removal
|
|
assign out = in;
|
|
endmodule
|