j_ao01.v 179 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 // $Id: j_ao01.v,v 1.1 2002/09/30 23:10:57 jeff Exp $ module j_ao01 (zn, a1, a2, b1, b2); input a1, a2, b1, b2; output zn; assign zn = ~((b1&b2) | (a1&a2)); endmodule