Details | Compare with Previous | View Log
module notech_inv (A,Z);
input A;
output Z;
assign Z=~A;
endmodule