3 lines
88 B
Verilog
3 lines
88 B
Verilog
module and_gate(input a, input b, output and_gate);
|
|
assign and_gate = a & b;
|
|
endmodule |