// ================================================================// 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: p_SDFCNQD1PO4.vmodulep_SDFCNQD1PO4(D,CP,CDN,Q);inputD;inputCP;inputCDN;outputQ;regQ;always@(posedgeCPornegedgeCDN)beginif(~CDN)Q<=1'b0;elseQ<=D;endendmodule