IOBUF.v
549 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// $Header: /root/leakn64/depot/rf/hw/debug/xilinx/IOBUF.v,v 1.1 2003/04/01 21:47:34 berndt Exp $
/*
FUNCTION : INPUT TRI-STATE OUTPUT BUFFER
*/
`timescale 100 ps / 10 ps
module IOBUF (O, IO, I, T);
parameter DRIVE = 12;
parameter IOSTANDARD = "LVCMOS25";
parameter SLEW = "S";
output O;
inout IO;
input I, T;
tri0 GTS = glbl.GTS;
or O1 (ts, GTS, T);
bufif0 T1 (IO, I, ts);
buf B1 (O, IO);
specify
(IO *> O) = (1, 1);
(I *> IO) = (1, 1);
(T *> IO) = (1, 1);
endspecify
endmodule