dfntnt.v 150 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 module dfntnt (q, z, d, cp, oe); input d, cp, oe; output q, z; assign z = oe ? q : 1'bz; GCB_DFF G1 (q,, d, cp, 1'b1, 1'b1); endmodule