lantnz.v 154 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 module lantnz (z, d, e, oe); input d, e, oe; output z; wire q; assign z = oe ? q : 1'bz; GCB_LATCH G1 (q,, d, e, 1'b1, 1'b1); endmodule