8 lines
75 B
Plaintext
8 lines
75 B
Plaintext
module and_op (a, b, c);
|
|
output a;
|
|
input b, c;
|
|
|
|
wire a = b & c;
|
|
|
|
endmodule
|