9 lines
87 B
Systemverilog
9 lines
87 B
Systemverilog
module and_op (a, b, c);
|
|
output a;
|
|
input b, c;
|
|
|
|
and a1 (a,b,c);
|
|
|
|
// comment
|
|
endmodule
|