19 lines
438 B
VHDL
19 lines
438 B
VHDL
-----------------------------------------------------------------------
|
|
-- $Header: /tmp/cvsroot/VHDL/lib/misc/pkg_template.vhd,v 1.1 2008-08-23 08:20:29 Jens Exp $
|
|
-----------------------------------------------------------------------
|
|
LIBRARY IEEE;
|
|
USE IEEE.STD_LOGIC_1164.ALL;
|
|
USE IEEE.NUMERIC_STD.ALL;
|
|
|
|
package template_pkg is
|
|
-- Constants
|
|
-- Types
|
|
-- Functions
|
|
|
|
end template_pkg;
|
|
|
|
package body template_pkg is
|
|
|
|
end template_pkg;
|
|
|