yosys4gal/testcases/and_gate.v
annoyatron255 f20410a723
Add OLMCs
2024-04-04 01:33:47 -05:00

9 lines
81 B
Verilog

module and_gate (A, B, Y);
input A, B;
output Y;
assign Y = A && B;
endmodule