1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-02-07 06:44:09 +08:00
oh/xilibs/dv/BUFIO.v
aolofsson 289024fd89 Flattening directory tree (again)
- 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
2022-06-21 14:48:48 -04:00

33 lines
685 B
Verilog

/*###########################################################################
*#An I/O clock buffer
*###########################################################################
*
* BUIOs can drive:
* -a single I/O clock network in the same region/bank
*
* BUIOs can be driven by:
* -SRCCs and MRCCs in the same clock region
* -MRCCs in an adjacent clock region using BUFMRs
* -MMCMs clock outputs 0-3 driving the HPC in the same clock region
*
*
* Input to Output Delay (Zynq7010/7020): 1.61/1.32/1.16 (-1/-2/-3 grade)
*
*
*/
module BUFIO (/*AUTOARG*/
// Outputs
O,
// Inputs
I
);
output O;
input I;
assign O=I;
endmodule