globals.vhd 675 B

123456789101112131415161718192021222324252627282930313233343536
  1. library IEEE;
  2. use IEEE.STD_LOGIC_1164.ALL;
  3. use ieee.math_real.all;
  4. package myPackage is
  5. type register_file is array(integer range <>) of std_logic_vector(31 downto 0);
  6. constant moduleCount : integer := 4;
  7. constant moduleIds : register_file(0 to moduleCount-1) :=(
  8. 0 => x"2cb31e7c", --dummyBig
  9. 1 => x"f218e0a2", --dummy
  10. 2 => x"9323eb24", --f11
  11. 3 => x"4cd2e19c" --conv2d_5x5
  12. );
  13. end myPackage;
  14. package body myPackage is
  15. end myPackage;
  16. library IEEE;
  17. use IEEE.STD_LOGIC_1164.ALL;
  18. use work.myPackage.ALL;
  19. entity globals is
  20. --Port ( );
  21. end globals;
  22. architecture Behavioral of globals is
  23. begin
  24. end Behavioral;