ao08d1.v 166 Bytes Raw Blame History Permalink 1 2 3 4 5 6 module ao08d1 (zn, a1, a2, a3, b); input a1, a2, a3, b; output zn; nor G2(zn, N3, b); and G3(N3, a1, a2, a3); endmodule