00001 --! Normal library 00002 library ieee; 00003 --! Normal package 00004 use ieee.std_logic_1164.all; 00005 00006 --! Package to define a record in 00007 package test_package is 00008 00009 --! Simple record to show how records are documented 00010 type my_record is record 00011 --! First item 00012 item1 : std_logic; 00013 00014 --! Second item 00015 item2 : integer; 00016 end record my_record; 00017 00018 --! Test constant 00019 constant test : std_logic; 00020 00021 end package test_package;