diff options
author | Marcin KoĆcielnicki <mwk@0x04.net> | 2020-03-20 14:36:00 +0100 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2020-03-20 14:37:38 +0100 |
commit | 9b982e929cf9b7a852b7758920cdf7541d0d2cf4 (patch) | |
tree | 55838c11c7f31b3564d21e1fe60d9a9cce94747e /techlibs/xilinx/cells_xtra.py | |
parent | f828cb5132b5d1a2c2d4d26ffaac6d492c7cc69e (diff) | |
download | yosys-9b982e929cf9b7a852b7758920cdf7541d0d2cf4.tar.gz yosys-9b982e929cf9b7a852b7758920cdf7541d0d2cf4.tar.bz2 yosys-9b982e929cf9b7a852b7758920cdf7541d0d2cf4.zip |
xilinx: Mark IOBUFDS.IOB as external pad
Diffstat (limited to 'techlibs/xilinx/cells_xtra.py')
-rw-r--r-- | techlibs/xilinx/cells_xtra.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/xilinx/cells_xtra.py b/techlibs/xilinx/cells_xtra.py index 749b1e0a7..f086291ab 100644 --- a/techlibs/xilinx/cells_xtra.py +++ b/techlibs/xilinx/cells_xtra.py @@ -302,7 +302,7 @@ CELLS = [ Cell('IOBUF_DCIEN', port_attrs={'IO': ['iopad_external_pin']}), Cell('IOBUF_INTERMDISABLE', port_attrs={'IO': ['iopad_external_pin']}), Cell('IOBUFE3', port_attrs={'IO': ['iopad_external_pin']}), - Cell('IOBUFDS', port_attrs={'IO': ['iopad_external_pin']}), + Cell('IOBUFDS', port_attrs={'IO': ['iopad_external_pin'], 'IOB': ['iopad_external_pin']}), Cell('IOBUFDS_DCIEN', port_attrs={'IO': ['iopad_external_pin'], 'IOB': ['iopad_external_pin']}), Cell('IOBUFDS_INTERMDISABLE', port_attrs={'IO': ['iopad_external_pin'], 'IOB': ['iopad_external_pin']}), Cell('IOBUFDS_DIFF_OUT', port_attrs={'IO': ['iopad_external_pin'], 'IOB': ['iopad_external_pin']}), |