dpclkibt0.vmd 835 Bytes
/**************************************************************/
/*    Verilog module of datapath cell dpclkibt0              */
/*    Designed by    Chunling    Compass       Aug. 3, 92     */
/*                                                            */
/*    The following is the port description                   */
/*    Control ports                                           */
/*        INST     : the input port                          */
/*        Z    : the output port                         */
/*    Parameters                                              */
/*        DELAY     : the delay time from input to output     */
/**************************************************************/
module dpclkibt0(INST, Z);

  parameter DELAY = 3, BF = 1;
  input  INST;
  output Z;
  wire   #DELAY Z = ~(~INST);

endmodule