dpclkibf0.vmd 836 Bytes
/**************************************************************/
/*    Verilog module of datapath cell dpclkibf0               */
/*    Designed by    Lin Yang    VLSI Technology  Oct. 20, 90 */
/*                                                            */
/*    The following is the port description                   */
/*    Control ports                                           */
/*        INST     : the input port                          */
/*        ZN   : the output port                         */
/*    Parameters                                              */
/*        DELAY     : the delay time from input to output     */
/**************************************************************/
module dpclkibf0(INST, ZN);

  parameter DELAY = 3, BF = 1;
  input  INST;
  output ZN;
  wire   #DELAY ZN = ~INST;

endmodule