j_ao04.v 249 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 // $Id: j_ao04.v,v 1.1 2002/09/30 23:10:57 jeff Exp $ module j_ao04 (zn, a1, a2, b); input a1, a2, b; output zn; assign zn = ~(b | (a1&a2)); // and G2(N2, a1, a2); // nor G3(zn, N2, b); endmodule