dfptnh2.v 127 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 module dfptnh2 (q, qn, d, cp, sdn); input d, cp, sdn; output q, qn; GCB_DFF G1 (q, qn, d, cp, sdn, 1'b1); endmodule