Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

carry increment adder error in VHDL

Status
Not open for further replies.

Arrowspace

Banned
Joined
Jan 23, 2015
Messages
186
Helped
3
Reputation
6
Reaction score
3
Trophy points
18
Activity points
0
I am trying to build carry increment adder in VHDL, but getting some error. can someone help me to get out from it.

I have posted image of error below

ERROR:HDLParsers:3014 - "C:/xilinx project/Neetu/Carry increment/carryincrement/carryincrement.vhd" Line 29. Library unit Generic_Adder is not available in library work.


https://obrazki.elektroda.pl/9604679100_1427689213.jpg
 

Re:carry increment adder error in VHDL

When you access a VHDL library, the library must be declared and then used as follows:


library <my_lib>;

use <my_lib>.<my_pkg>.all;

If the package name listed in the usage line does not match a package name in the library file, this error results. Be sure that the package <my_pkg> exists within a library file compiled into the library <my_lib>.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top