Hi, On Sun, Mar 10, 2002 at 04:58:43PM -0800, Chris Savarese wrote: > Hello, > I'm attempting to use package files with my VHDL code, but I can't get > vasy to accept them. Here is the sample package file, test_pkg.pkg, I'm > trying to use: > > package test is > constant SETSOMETHING : integer := "00"; > end package test; > ...... You should have a file called test_pkg.vhd containing the following lines: -- test_pkg.vhd package test is constant SETSOMETHING : integer := 0; end test; -- and another file containing the association of a logical and physical package name, called for example my_package.pkg: # file my_package.pkg work.test.all : test_pkg In your file mycode.vhd using the package test you should have: library work; use work.test.all; .... And finally when you want to compile your file mycode.vhd using vasy with the package test, you have to use the following command line parameters: vasy -a -o -I vhd -HLpV -P my_package mycode Regards, (_) ___ Ludovic JACOMME _ _ ( ) ( ) ( ) ( 6 ) Laboratoire LIP6, Equipe ASIM ( ) (_) ( _ ) Couloir 65-66, 4eme etage Porte 405, ( )___ ( ) Universite P. et M. Curie (P6) (_____) (_) 4 place Jussieu, 75252 Paris Cedex 05 Tel: (33) 01.44.27.27.06 01.44.27.54.15 Fax: (33) 01.44.27.72.80 ICQ: 62526530 mailto: Ludovic.Jacomme@asim.lip6.fr http: //www-asim.lip6.fr/~ludo