-- rampack.vhd -- Expert VHDL Verification 2.1 Exercise 2 Template library IEEE; use IEEE.STD_LOGIC_1164.all; package RamPack is subtype AddrType is STD_LOGIC_VECTOR(23 downto 0); subtype DataType is STD_LOGIC_VECTOR(7 downto 0); constant Diagnostics : BOOLEAN := FALSE; end;