2015-04-23 17:52:46 -04:00
|
|
|
/*###########################################################################
|
|
|
|
*#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)
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2014-12-14 22:21:01 -05:00
|
|
|
module BUFIO (/*AUTOARG*/
|
|
|
|
// Outputs
|
|
|
|
O,
|
|
|
|
// Inputs
|
|
|
|
I
|
|
|
|
);
|
2015-04-08 23:40:16 -04:00
|
|
|
|
2015-04-22 13:56:29 -04:00
|
|
|
output O;
|
|
|
|
input I;
|
|
|
|
|
2015-04-08 23:40:16 -04:00
|
|
|
assign O=I;
|
2015-04-22 13:56:29 -04:00
|
|
|
|
|
|
|
endmodule
|