GDB (API)
|
00001 /* sim-rx.h --- interface between rl78 simulator and GDB. 00002 00003 Copyright 2011-2013 Free Software Foundation, Inc. 00004 00005 Contributed by Red Hat. 00006 00007 This file is part of GDB. 00008 00009 This program is free software; you can redistribute it and/or modify 00010 it under the terms of the GNU General Public License as published by 00011 the Free Software Foundation; either version 3 of the License, or 00012 (at your option) any later version. 00013 00014 This program is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 GNU General Public License for more details. 00018 00019 You should have received a copy of the GNU General Public License 00020 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 00021 00022 #if !defined (SIM_RL78_H) 00023 #define SIM_RL78_H 00024 00025 enum sim_rl78_regnum 00026 { 00027 sim_rl78_bank0_r0_regnum, 00028 sim_rl78_bank0_r1_regnum, 00029 sim_rl78_bank0_r2_regnum, 00030 sim_rl78_bank0_r3_regnum, 00031 sim_rl78_bank0_r4_regnum, 00032 sim_rl78_bank0_r5_regnum, 00033 sim_rl78_bank0_r6_regnum, 00034 sim_rl78_bank0_r7_regnum, 00035 00036 sim_rl78_bank1_r0_regnum, 00037 sim_rl78_bank1_r1_regnum, 00038 sim_rl78_bank1_r2_regnum, 00039 sim_rl78_bank1_r3_regnum, 00040 sim_rl78_bank1_r4_regnum, 00041 sim_rl78_bank1_r5_regnum, 00042 sim_rl78_bank1_r6_regnum, 00043 sim_rl78_bank1_r7_regnum, 00044 00045 sim_rl78_bank2_r0_regnum, 00046 sim_rl78_bank2_r1_regnum, 00047 sim_rl78_bank2_r2_regnum, 00048 sim_rl78_bank2_r3_regnum, 00049 sim_rl78_bank2_r4_regnum, 00050 sim_rl78_bank2_r5_regnum, 00051 sim_rl78_bank2_r6_regnum, 00052 sim_rl78_bank2_r7_regnum, 00053 00054 sim_rl78_bank3_r0_regnum, 00055 sim_rl78_bank3_r1_regnum, 00056 sim_rl78_bank3_r2_regnum, 00057 sim_rl78_bank3_r3_regnum, 00058 sim_rl78_bank3_r4_regnum, 00059 sim_rl78_bank3_r5_regnum, 00060 sim_rl78_bank3_r6_regnum, 00061 sim_rl78_bank3_r7_regnum, 00062 00063 sim_rl78_psw_regnum, 00064 sim_rl78_es_regnum, 00065 sim_rl78_cs_regnum, 00066 sim_rl78_pc_regnum, 00067 00068 sim_rl78_spl_regnum, 00069 sim_rl78_sph_regnum, 00070 sim_rl78_pmc_regnum, 00071 sim_rl78_mem_regnum, 00072 00073 sim_rl78_num_regs 00074 }; 00075 00076 #endif /* SIM_RL78_H */