1
0
mirror of https://github.com/aolofsson/oh.git synced 2025-01-17 20:02:53 +08:00
oh/xilibs/hdl/BUFIO.v
Andreas Olofsson 62c2c0e654 Adding comments
2015-04-23 17:52:46 -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