To access a VHDL package:
- Use the library that contains the compiled package using a library clause. For
example:
library library_name; - Designate the package, or a specific definition contained in the package, with a use
clause. For example:
use library_name.package_name.all. - Insert these lines immediately before the entity or architecture in which you use the package definitions.
If the designated package is compiled to this library, you can omit the library clause,
because work library is the default.