// ================================================================// 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: SDFSNQD1.vmoduleSDFSNQD1(SI,D,SE,CP,SDN,Q);inputSI;inputD;inputSE;inputCP;inputSDN;outputQ;regQ;assignsel=SE?SI:D;always@(posedgeCPornegedgeSDN)beginif(~SDN)Q<=1'b1;elseQ<=sel;endendmodule