Module -- Structural
//structural
module AND2 (in1,in2,out);
input in1, in2;
output out;
wire in1,in2, out;
and u1 (out,in1,in2);
endmodule
Primitive logic gate
Previous slide
Next slide
Back to first slide
View graphic version