FPGA Central - World's 1st FPGA / CPLD Portal

FPGA Central

World's 1st FPGA Portal

 

Go Back   FPGA Groups > NewsGroup > FPGA

FPGA comp.arch.fpga newsgroup (usenet)

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-19-2007, 09:59 PM
dhruvakshad@gmail.com
Guest
 
Posts: n/a
Default Library unit VPKG is not available in library UNISIM

I am trying to synthesize a code using ISE which contains a component
fifo the fifo code is the following

-- synopsys translate_off
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
library UNISIM;
use UNISIM.VCOMPONENTS.ALL;
use UNISIM.VPKG.ALL;

entity ifo is
.....................
...............
end ifo

ARCHITECTURE st of ifo is
..........
.........
end st

-- synopsys translate_on

If I run the above code using ise it doesnt recognize the component at
all. If I remove the line sysnopsys translate_off then it gives me
following error
Library unit VPKG is not available in library UNISIM

any ideas?
Thanks
-D

Reply With Quote
  #2 (permalink)  
Old 07-19-2007, 10:07 PM
Duane Clark
Guest
 
Posts: n/a
Default Re: Library unit VPKG is not available in library UNISIM

dhruvakshad@gmail.com wrote:
> I am trying to synthesize a code using ISE which contains a component
> fifo the fifo code is the following
>
> -- synopsys translate_off
> library IEEE;
> use IEEE.STD_LOGIC_1164.ALL;
> library UNISIM;
> use UNISIM.VCOMPONENTS.ALL;
> use UNISIM.VPKG.ALL;


Don't use VPKG, and put the translate_off/on only around the unisim
stuff (in this case "synthesis" is a synonym for "synopsys"):

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
-- synthesis translate_off
library UNISIM;
use UNISIM.VCOMPONENTS.ALL;
-- synthesis translate_on
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Unisim versus Virtex2 Xilinx Library Pablo FPGA 0 07-17-2007 12:29 PM
library for lmb savs FPGA 0 06-16-2006 10:52 AM
how to add library lina FPGA 0 05-09-2005 10:34 AM
Unisim Library Mohamed Elnamaky FPGA 3 09-06-2004 11:38 PM
FMF library ALuPin FPGA 1 04-28-2004 02:28 PM


All times are GMT +1. The time now is 03:46 AM.


Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
Copyright 2008 @ FPGA Central. All rights reserved