dpbuf0012.vmd
1.13 KB
/**************************************************************/
/* Verilog module of datapath cell dpbuf0012 */
/* Designed by Lin Yang VLSI Technology Oct. 20, 90 */
/* Designed by Linda J. Xu July, 1992 */
/* */
/* The following is the port description */
/* Data ports */
/* I : the input port */
/* Z : the output port */
/* Parameters */
/* WORDSIZE : the word size of the datapath cell */
/* DELAY : the delay time from input to output */
/* BF : the with/without buffer flag */
/* 0 for without buffer; 1 for with buffer */
/**************************************************************/
module dpbuf0012(I, Z);
parameter WORDSIZE = 8, DELAY = 1, BF = 1;
input [WORDSIZE-1:0] I;
output [WORDSIZE-1:0] Z;
wire [WORDSIZE-1:0] #DELAY Z = ~(~I);
endmodule