File size: 212 Bytes
7df9186
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module IOBUF #(
    parameter integer DRIVE = 12,
    parameter IOSTANDARD = "DEFAULT",
    parameter SLEW = "SLOW"
) (
	output O,
	inout IO,
	input I,
	input T
);
	bufif0 t (IO, I, T);
	buf b (O, IO);
endmodule