dpclkuctv.vmd 1.13 KB
/**************************************************************/
/*    Verilog module of datapath cell DPCLKUCTV               */
/*    Designed by    Lin Yang    VLSI Technology  Oct. 20, 90 */
/*    Designed by    Linda J. Xu      Dec., 1992              */
/*                                                            */
/*    This module is added for the use of Verilog software    */
/*    compiler. It is not a cell in datapath.                 */
/*                                                            */
/*    The following is the port description                   */
/*    Control ports                                           */
/*        CLK     : the input port                              */
/*        C     : the output port                             */
/*    Parameters                                              */
/*        DELAY     : the delay time from input to output     */
/**************************************************************/
module dpclkuctv (CLK, C);

  parameter WORDSIZE = 1, DELAY = 3;
  input  [WORDSIZE-1:0] CLK;
  output [WORDSIZE-1:0] C;
  wire   [WORDSIZE-1:0] #DELAY C = ~(~CLK);

endmodule