nand2/07_Operating_System/00_HACK/Buffer.v

15 lines
125 B
Coq
Raw Normal View History

2023-01-11 10:13:09 +00:00
/**
* Buffer:
* out = in
*/
`default_nettype none
module Buffer(
input in,
output out
);
assign out = in;
endmodule