MY_PACKAGE.VHD
上传用户:dgjihui88
上传日期:2013-07-23
资源大小:43k
文件大小:0k
源码类别:
VHDL/FPGA/Verilog
开发平台:
MultiPlatform
- library IEEE;
- use IEEE.std_logic_1164.all;
- use IEEE.std_logic_arith.all;
- use IEEE.std_logic_unsigned.all;
- package my_package is
- type BYTE is array (7 downto 0) of STD_LOGIC;
- type RAM_TYPE is array (integer range <>) of UNSIGNED(7 downto 0);
- type ROM_TYPE is array (integer range <>) of UNSIGNED(7 downto 0);
- end my_package;
- ---------------------------------------------------------------------
- package body my_package is
- end my_package;