Details | Compare with Previous | View Log
module notech_and2 (A,B,Z);
input A,B;
output Z;
assign Z=A&B;
endmodule