2022-07-21 12:15:52 +02:00

9 lines
76 B
Systemverilog

module and_op (a, b, c);
output a;
input b, c;
and a1 (a,b,c);
endmodule