| 问答编号# |
3470
|
| 型号 |
SW-Timing Analyzer/TRCE |
| 最后更新日期 |
2009-04-15 00:00:00.0 |
| 记录状态 |
Active |
| 关键词 |
side, pin locking, multiple, site, banks, edges, pad |
疑问描述
Keywords: side, pin locking, multiple, site, banks, edges, pad
How do I LOC a given PAD to a particular side of the die?
For more information, see (Xilinx Answer 3753).
解决方案
The syntax "L, R, T, B, TL, etc." is supported for PAD LOCs as follows:
NET mysig LOC = T;
To LOC a PAD to any location on a given edge or list of location, enumerate the list of IOB sites as follows:
NET mysig LOC = A2, B3, A4, B5, A6, B7;
To LOC a PAD to a bank of the device, use the BANK number as follows:
NET mysig LOC = BANK2;
Note that MAP will not accept the wild cards in the IOB site locations, so you cannot use: P?, P1?, P2?, P3?, etc., to LOC to sites P1 through P39. Instead, you must explicitly list the sites.