lantnq.v 105 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 module lantnq (q, d, e); input d, e; output q; GCB_LATCH G1 (q,, d, e, 1'b1, 1'b1); endmodule