1 /* Moxie Simulator definition.
2 Copyright (C) 2009-2023 Free Software Foundation, Inc.
4 This file is part of the GNU simulators.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
35 /* System registers. For sh-dsp this also includes A0 / X0 / X1 / Y0 / Y1
36 which are located in fregs. Probably should include pc too - to avoid
37 alignment repercussions. */
44 int fpul
; /* A1 for sh-dsp - but only for movs etc. */
45 int fpscr
; /* dsr for sh-dsp */
57 /* Control registers; on the SH4, ldc / stc is privileged, except when
74 int dbr
; /* debug base register */
75 int sgr
; /* saved gr15 */
76 int ldst
; /* load/store flag (boolean) */
78 int ibcr
; /* sh2a bank control register */
79 int ibnr
; /* sh2a bank number register */
84 unsigned char *insn_end
;
99 #define PROFILE_FREQ 1
100 #define PROFILE_SHIFT 2
102 unsigned short *profile_hist
;
103 unsigned char *memory
;
104 int xyram_select
, xram_start
, yram_start
;
107 unsigned char *xmem_offset
;
108 unsigned char *ymem_offset
;
109 unsigned long bfd_mach
;
110 regstacktype
*regstack
;
115 /* TODO: Move into sim_cpu. */
116 extern saved_state_type saved_state
;