// ================================================================// NVDLA Open Source Project//// Copyright(c) 2016 - 2017 NVIDIA Corporation. Licensed under the// NVDLA Open Hardware License; Check "LICENSE" which comes with// this distribution for more information.// ================================================================// File Name: CKLNQD12.vmoduleCKLNQD12(TE,E,CP,Q);inputTE;inputE;inputCP;outputQ;regqd;always@(negedgeCP)qd<=TE|E;assignQ=CP&qd;//PREICG_X1N_A7P5PP60TR_C8 uicg(.E (E), .CK (CP), .SE (TE), .ECK (Q));endmodule