diff options
author | Miodrag Milanovic <mmicko@gmail.com> | 2023-03-21 08:53:22 +0100 |
---|---|---|
committer | myrtle <gatecat@ds0.me> | 2023-03-23 09:44:36 +0100 |
commit | f35bdaa5278b408e94ac8c97a06c3f7f0fe1773a (patch) | |
tree | 8089e498e0669ce6d0d9338644fe6d5bc4b4424e /techlibs/xilinx/cells_xtra.v | |
parent | 23826e5152483c39a617ee1c696c3b48a0c2b756 (diff) | |
download | yosys-f35bdaa5278b408e94ac8c97a06c3f7f0fe1773a.tar.gz yosys-f35bdaa5278b408e94ac8c97a06c3f7f0fe1773a.tar.bz2 yosys-f35bdaa5278b408e94ac8c97a06c3f7f0fe1773a.zip |
Update Xilinx cell definitions, fixes #3699
Diffstat (limited to 'techlibs/xilinx/cells_xtra.v')
-rw-r--r-- | techlibs/xilinx/cells_xtra.v | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/techlibs/xilinx/cells_xtra.v b/techlibs/xilinx/cells_xtra.v index aae0d3ee5..8dc74b16e 100644 --- a/techlibs/xilinx/cells_xtra.v +++ b/techlibs/xilinx/cells_xtra.v @@ -7550,10 +7550,12 @@ module IBUF_ANALOG (...); endmodule module IBUFE3 (...); + parameter CCIO_EN = "TRUE"; parameter IBUF_LOW_PWR = "TRUE"; parameter IOSTANDARD = "DEFAULT"; - parameter USE_IBUFDISABLE = "FALSE"; + parameter SIM_DEVICE = "ULTRASCALE"; parameter integer SIM_INPUT_BUFFER_OFFSET = 0; + parameter USE_IBUFDISABLE = "FALSE"; output O; (* iopad_external_pin *) input I; @@ -7760,8 +7762,9 @@ module IOBUFE3 (...); parameter integer DRIVE = 12; parameter IBUF_LOW_PWR = "TRUE"; parameter IOSTANDARD = "DEFAULT"; - parameter USE_IBUFDISABLE = "FALSE"; + parameter SIM_DEVICE = "ULTRASCALE"; parameter integer SIM_INPUT_BUFFER_OFFSET = 0; + parameter USE_IBUFDISABLE = "FALSE"; output O; (* iopad_external_pin *) inout IO; @@ -19721,6 +19724,7 @@ module HSADC (...); endmodule module RFDAC (...); + parameter integer LD_DEVICE = 0; parameter integer OPT_CLK_DIST = 0; parameter SIM_DEVICE = "ULTRASCALE_PLUS"; parameter integer XPA_ACTIVE_DUTYCYCLE = 100; @@ -19784,6 +19788,7 @@ module RFDAC (...); endmodule module RFADC (...); + parameter integer LD_DEVICE = 0; parameter integer OPT_ANALOG = 0; parameter integer OPT_CLK_DIST = 0; parameter SIM_DEVICE = "ULTRASCALE_PLUS"; |