x393  1.0
FPGAcodeforElphelNC393camera
iobuf.v
Go to the documentation of this file.
1 
39 `timescale 1ns/1ps
40 
41 module iobuf#(
42  parameter integer DRIVE = 12,
43  parameter IBUF_LOW_PWR = "TRUE",
44  parameter IOSTANDARD = "DEFAULT",
45 `ifdef XIL_TIMING
46  parameter LOC = " UNPLACED",
47 `endif
48  parameter SLEW = "SLOW"
49 )(
50  output O,
51  inout IO,
52  input I,
53  input T
54 );
55 
56  IOBUF #(
57  .DRIVE (DRIVE),
60  .SLEW (SLEW)
61  ) IOBUF_i (
62  .O (O), // output
63  .IO (IO), // inout
64  .I (I), // input
65  .T (T) // input
66  );
67 endmodule
68 
69 
11284IBUF_LOW_PWR"TRUE"
Definition: iobuf.v:43
11290T
Definition: iobuf.v:51
IOBUF_i IOBUF
Definition: iobuf.v:54
integer 11283DRIVE12
Definition: iobuf.v:42
11285IOSTANDARD"DEFAULT"
Definition: iobuf.v:44
11288IO
Definition: iobuf.v:49
11286SLEW"SLOW"
Definition: iobuf.v:46
Definition: iobuf.v:41
11287O
Definition: iobuf.v:48
11289I
Definition: iobuf.v:50