GDB (API)
|
00001 /* sim-rx.h --- interface between RX simulator and GDB. 00002 00003 Copyright 2008-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_RX_H) 00023 #define SIM_RX_H 00024 00025 enum sim_rx_regnum 00026 { 00027 sim_rx_r0_regnum, 00028 sim_rx_r1_regnum, 00029 sim_rx_r2_regnum, 00030 sim_rx_r3_regnum, 00031 sim_rx_r4_regnum, 00032 sim_rx_r5_regnum, 00033 sim_rx_r6_regnum, 00034 sim_rx_r7_regnum, 00035 sim_rx_r8_regnum, 00036 sim_rx_r9_regnum, 00037 sim_rx_r10_regnum, 00038 sim_rx_r11_regnum, 00039 sim_rx_r12_regnum, 00040 sim_rx_r13_regnum, 00041 sim_rx_r14_regnum, 00042 sim_rx_r15_regnum, 00043 sim_rx_usp_regnum, 00044 sim_rx_isp_regnum, 00045 sim_rx_ps_regnum, 00046 sim_rx_pc_regnum, 00047 sim_rx_intb_regnum, 00048 sim_rx_bpsw_regnum, 00049 sim_rx_bpc_regnum, 00050 sim_rx_fintv_regnum, 00051 sim_rx_fpsw_regnum, 00052 sim_rx_acc_regnum, 00053 sim_rx_num_regs 00054 }; 00055 00056 #endif /* SIM_RX_H */