10 lines
85 B
Plaintext

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