vhdl_reference_93:design_units_and_their_analysis

Design units and their analysis

library logical_name_list ;

logical_name { , logical_name }

The LIBRARY -statement can be placed as a context-statement in front of every library module such as entity, architecture, package, package body and configuration.

Several libraries are made public.

LIBRARY my_library ;
LIBRARY my_library_1, my_library_2 ;

After the libraries std and work have been made public all elements from the package standard of the library std are integrated.

LIBRARY std, work ;
USE std.standard. ALL ;