gui_debug_constants.h (1306B)
1/* 2 * Gearboy - Nintendo Game Boy Emulator 3 * Copyright (C) 2012 Ignacio Sanchez 4 5 * This program is free software: you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation, either version 3 of the License, or 8 * any later version. 9 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 15 * You should have received a copy of the GNU General Public License 16 * along with this program. If not, see http://www.gnu.org/licenses/ 17 * 18 */ 19 20#ifndef GUI_DEBUG_CONSTANTS_H 21#define GUI_DEBUG_CONSTANTS_H 22 23static const int gui_debug_symbols_count = 14; 24 25static const char* gui_debug_symbols[gui_debug_symbols_count] = { 26 "00:0000 RST_00", 27 "00:0008 RST_08", 28 "00:0010 RST_10", 29 "00:0018 RST_18", 30 "00:0020 RST_20", 31 "00:0028 RST_28", 32 "00:0030 RST_30", 33 "00:0038 RST_38", 34 "00:0040 VBlankInterrupt", 35 "00:0048 LCDCInterrupt", 36 "00:0050 TimerOverflowInterrupt", 37 "00:0058 SerialTransferCompleteInterrupt", 38 "00:0060 JoypadTransitionInterrupt", 39 "00:0100 Boot" 40}; 41 42#endif /* GUI_DEBUG_CONSTANTS_H */