URL
https://opencores.org/ocsvn/light52/light52/trunk
Subversion Repositories light52
[/] [light52/] [trunk/] [test/] [irq_test/] [obj_code_pkg.vhdl] - Rev 15
Go to most recent revision | Compare with Previous | Blame | View Log
-------------------------------------------------------------------------------- -- obj_code_pkg.vhdl -- Application object code in vhdl constant string format. -------------------------------------------------------------------------------- -- Written by build_rom.py for project 'irq_test'. -------------------------------------------------------------------------------- -- Copyright (C) 2012 Jose A. Ruiz -- -- This source file may be used and distributed without -- restriction provided that this copyright statement is not -- removed from the file and that any derivative work contains -- the original copyright notice and the associated disclaimer. -- -- This source file is free software; you can redistribute it -- and/or modify it under the terms of the GNU Lesser General -- Public License as published by the Free Software Foundation; -- either version 2.1 of the License, or (at your option) any -- later version. -- -- This source is distributed in the hope that it will be -- useful, but WITHOUT ANY WARRANTY; without even the implied -- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -- PURPOSE. See the GNU Lesser General Public License for more -- details. -- -- You should have received a copy of the GNU Lesser General -- Public License along with this source; if not, download it -- from http://www.opencores.org/lgpl.shtml -------------------------------------------------------------------------------- library ieee; use ieee.std_logic_1164.all; use ieee.numeric_std.all; use work.light52_pkg.all; package obj_code_pkg is -- Size of XCODE memory in bytes. constant XCODE_SIZE : natural := 2048; -- Size of XDATA memory in bytes. constant XDATA_SIZE : natural := 512; -- Object code initialization constant. constant object_code : t_obj_code(0 to 355) := ( X"02", X"00", X"30", X"02", X"00", X"d4", X"00", X"00", X"00", X"00", X"00", X"02", X"00", X"e2", X"00", X"00", X"00", X"00", X"00", X"02", X"00", X"e2", X"00", X"00", X"00", X"00", X"00", X"02", X"00", X"e2", X"00", X"00", X"00", X"00", X"00", X"02", X"00", X"e2", X"00", X"00", X"00", X"00", X"00", X"00", X"00", X"00", X"00", X"00", X"75", X"a8", X"00", X"75", X"90", X"01", X"00", X"00", X"00", X"e5", X"60", X"b4", X"00", X"7f", X"d2", X"c0", X"75", X"a8", X"01", X"75", X"90", X"01", X"00", X"00", X"00", X"e5", X"60", X"b4", X"00", X"6f", X"d2", X"c0", X"75", X"90", X"00", X"75", X"a8", X"81", X"75", X"60", X"00", X"75", X"90", X"01", X"00", X"00", X"00", X"e5", X"60", X"b4", X"01", X"4e", X"d2", X"c0", X"90", X"01", X"08", X"12", X"00", X"c8", X"75", X"a8", X"00", X"75", X"88", X"00", X"75", X"8d", X"00", X"75", X"8c", X"00", X"75", X"8f", X"c3", X"75", X"8e", X"50", X"75", X"88", X"30", X"78", X"5f", X"00", X"d8", X"fd", X"e5", X"8d", X"b4", X"00", X"1c", X"e5", X"8c", X"b4", X"00", X"17", X"78", X"0a", X"00", X"d8", X"fd", X"e5", X"8d", X"b4", X"00", X"0d", X"e5", X"8c", X"b4", X"01", X"08", X"90", X"01", X"43", X"12", X"00", X"c8", X"01", X"a5", X"90", X"01", X"35", X"12", X"00", X"c8", X"75", X"a8", X"00", X"01", X"b0", X"90", X"01", X"27", X"12", X"00", X"c8", X"75", X"a8", X"00", X"01", X"bb", X"90", X"00", X"f6", X"12", X"00", X"c8", X"75", X"a8", X"00", X"01", X"c6", X"78", X"00", X"e8", X"08", X"93", X"60", X"04", X"f5", X"99", X"80", X"f7", X"22", X"75", X"90", X"00", X"75", X"c0", X"ff", X"05", X"60", X"90", X"00", X"e4", X"11", X"c8", X"32", X"01", X"e2", X"3c", X"45", X"78", X"74", X"65", X"72", X"6e", X"61", X"6c", X"20", X"69", X"72", X"71", X"3e", X"0d", X"0a", X"00", X"00", X"55", X"6e", X"65", X"78", X"70", X"65", X"63", X"74", X"65", X"64", X"20", X"49", X"52", X"51", X"0d", X"0a", X"00", X"00", X"49", X"52", X"51", X"20", X"74", X"65", X"73", X"74", X"20", X"66", X"69", X"6e", X"69", X"73", X"68", X"65", X"64", X"2c", X"20", X"6e", X"6f", X"20", X"65", X"72", X"72", X"6f", X"72", X"73", X"0d", X"0a", X"00", X"4d", X"69", X"73", X"73", X"69", X"6e", X"67", X"20", X"49", X"52", X"51", X"0d", X"0a", X"00", X"54", X"69", X"6d", X"65", X"72", X"20", X"65", X"72", X"72", X"6f", X"72", X"0d", X"0a", X"00", X"54", X"69", X"6d", X"65", X"72", X"20", X"74", X"65", X"73", X"74", X"20", X"66", X"69", X"6e", X"69", X"73", X"68", X"65", X"64", X"2c", X"20", X"6e", X"6f", X"20", X"65", X"72", X"72", X"6f", X"72", X"73", X"0d", X"0a", X"00" ); end package obj_code_pkg;
Go to most recent revision | Compare with Previous | Blame | View Log