dpclkobf0.vmd
845 Bytes
/**************************************************************/
/* Verilog module of datapath cell dpclkobf0 */
/* Designed by Chunling Liu Compass Aug. 4, 92 */
/* */
/* The following is the port description */
/* Control ports */
/* I : the input port */
/* INST_CON : the output port */
/* Parameters */
/* DELAY : the delay time from input to output */
/**************************************************************/
module dpclkobf0(I, INST_CON);
parameter DELAY = 3, BF = 1;
input I;
output INST_CON;
wire #DELAY INST_CON = ~I;
endmodule