6 lines
78 B
Plaintext
6 lines
78 B
Plaintext
module buffer (A, Y);
|
|
input A;
|
|
output Y;
|
|
assign Y = A; // "A"
|
|
endmodule
|