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