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