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