// ================================================================// 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: SDFQD1.vmoduleSDFQD1(SI,D,SE,CP,Q);inputSI;inputD;inputSE;inputCP;outputQ;regQ;assignsel=SE?SI:D;always@(posedgeCP)beginQ<=sel;endendmodule