NAND2.v
334 Bytes
// $Header: /root/leakn64/depot/rf/hw/flif/xilinx/NAND2.v,v 1.1 2003/08/20 23:46:50 berndt Exp $
/*
FUNCTION : 2-INPUT NAND GATE
*/
`timescale 100 ps / 10 ps
module NAND2 (O, I0, I1);
output O;
input I0, I1;
nand A1 (O, I0, I1);
specify
(I0 *> O) = (1, 1);
(I1 *> O) = (1, 1);
endspecify
endmodule