mirror of https://github.com/YosysHQ/yosys.git
6 lines
78 B
Plaintext
6 lines
78 B
Plaintext
|
|
module buffer (A, Y);
|
||
|
|
input A;
|
||
|
|
output Y;
|
||
|
|
assign Y = A; // "A"
|
||
|
|
endmodule
|