// ================================================================// 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_SSYNC2DO_C_PP.vmodulep_SSYNC2DO_C_PP(clk,d,clr_,q);//---------------------------------------//IO DECLARATIONSinputclk;inputd;inputclr_;outputq;regq,d0;always@(posedgeclkornegedgeclr_)beginif(~clr_){q,d0}<=2'd0;else{q,d0}<={d0,d};endendmodule