nand2/01_Boolean_Logic/Buffer.v
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00

15 lines
131 B
Verilog

/**
* Buffer:
* out = in
*/
`default_nettype none
module Buffer(
input in,
output out
);
// Put your code here:
endmodule