mirror of
https://github.com/aolofsson/oh.git
synced 2025-01-30 02:32:53 +08:00
289024fd89
- Creating an arbitrary 'src' directory really doesn't help much... - Goal is to make each folder self contained - Make meta repos and individual repos have the same directory structure
16 lines
286 B
Verilog
16 lines
286 B
Verilog
module OBUFDS_GTE3_ADV #(
|
|
`ifdef XIL_TIMING //Simprim
|
|
parameter LOC = "UNPLACED",
|
|
`endif
|
|
parameter [0:0] REFCLK_EN_TX_PATH = 1'b0,
|
|
parameter [4:0] REFCLK_ICNTL_TX = 5'b00000
|
|
)(
|
|
output O,
|
|
output OB,
|
|
|
|
input CEB,
|
|
input [3:0] I,
|
|
input [1:0] RXRECCLK_SEL
|
|
);
|
|
endmodule
|