Files
nand2tetris_verilog/nand.v
2024-06-13 13:29:36 -07:00

10 lines
120 B
Verilog

`ifndef _nand_v
`define _nand_v
module Nand (input a, input b, output out);
assign out=~(a&&b);
endmodule
`endif