MY_PACKAGE.VHD
上传用户:dgjihui88
上传日期:2013-07-23
资源大小:43k
文件大小:0k
源码类别:

VHDL/FPGA/Verilog

开发平台:

MultiPlatform

  1. library IEEE;
  2. use IEEE.std_logic_1164.all;
  3. use IEEE.std_logic_arith.all;
  4. use IEEE.std_logic_unsigned.all;
  5. package my_package is
  6. type BYTE is array (7 downto 0) of STD_LOGIC;
  7. type RAM_TYPE is array (integer range <>) of UNSIGNED(7 downto 0);
  8. type ROM_TYPE is array (integer range <>) of UNSIGNED(7 downto 0);
  9. end my_package;
  10. ---------------------------------------------------------------------
  11. package body my_package is
  12. end my_package;