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

17 lines
183 B
Verilog

/**
* And gate:
* out = 1 if (a == 1 and b == 1)
* 0 otherwise
*/
`default_nettype none
module And(
input a,
input b,
output out
);
// Put your code here:
endmodule