- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
<ibuf> remains a black-box since it has no binding entity.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-09-2012 02:48 AM
I am using HDL designer with xilinx ise for synthesis.
I am getting similar warning for all components of unisim library.
How to make definitions of these component available to synthesis tool?
Re: <ibuf> remains a black-box since it has no binding entity.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-09-2012 02:53 AM
How do you instantiate the ibuf primitive in your code?
These primitives do be available to Synthesis tool, although you receive these warnings. These warnings does not negatively affect the Synthesis process but if you want to remove these warnings, you may need to change the way you instantiate the primitives.
Vivian
Re: <ibuf> remains a black-box since it has no binding entity.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-09-2012 03:25 AM
--library declaration
library unisim;
-- synopsys translate_off
for all : IBUF use entity unisim.IBUF;
-- synopsys translate_on
--ibuf declaration
I0 : IBUF generic map ( CAPACITANCE => "DONT_CARE", IBUF_DELAY_VALUE => "0", IBUF_LOW_PWR => TRUE, IFD_DELAY_VALUE => "AUTO", IOSTANDARD => "DEFAULT" ) port map ( O => Mezz_TDO_i, I => Mezz_TDO );
Re: <ibuf> remains a black-box since it has no binding entity.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-09-2012 09:43 AM
You forgot.
use unisim.vcomponents.all;
Have you tried typing your question into Google? If not you should before posting.
Too many results? Try adding site:www.xilinx.com











