2022-07-21 12:57:56 +02:00

10 lines
85 B
Systemverilog

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