2 * $Id: sh4.h 577 2008-01-01 05:08:38Z nkeynes $
4 * This file defines the public functions and definitions exported by the SH4
7 * Copyright (c) 2005 Nathan Keynes.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
21 #define lxdream_sh4_H 1
31 * SH4 is running normally
33 #define SH4_STATE_RUNNING 1
35 * SH4 is not executing instructions but all peripheral modules are still
38 #define SH4_STATE_SLEEP 2
40 * SH4 is not executing instructions, DMAC is halted, but all other peripheral
41 * modules are still running
43 #define SH4_STATE_DEEP_SLEEP 3
45 * SH4 is not executing instructions and all peripheral modules are also
46 * stopped. As close as you can get to powered-off without actually being
49 #define SH4_STATE_STANDBY 4
52 * sh4r.event_types flag indicating a pending IRQ
57 * sh4r.event_types flag indicating a pending event (from the event queue)
59 #define PENDING_EVENT 2
62 * SH4 register structure
64 struct sh4_registers {
66 uint32_t sr, pr, pc, fpscr;
67 uint32_t t, m, q, s; /* really boolean - 0 or 1 */
72 uint32_t gbr, ssr, spc, sgr, dbr, vbr;
74 uint32_t r_bank[8]; /* hidden banked registers */
75 int32_t store_queue[16]; /* technically 2 banks of 32 bytes */
77 uint32_t new_pc; /* Not a real register, but used to handle delay slots */
78 uint32_t event_pending; /* slice cycle time of the next pending event, or FFFFFFFF
79 when no events are pending */
80 uint32_t event_types; /* bit 0 = IRQ pending, bit 1 = general event pending */
81 int in_delay_slot; /* flag to indicate the current instruction is in
82 * a delay slot (certain rules apply) */
83 uint32_t slice_cycle; /* Current nanosecond within the timeslice */
84 int sh4_state; /* Current power-on state (one of the SH4_STATE_* values ) */
87 extern struct sh4_registers sh4r;
90 * Switch between translation and emulation execution modes. Note that this
91 * should only be used while the system is stopped. If the system was built
92 * without translation support, this method has no effect.
94 * @param use TRUE for translation mode, FALSE for emulation mode.
96 void sh4_set_use_xlat( gboolean use );
99 * Explicitly set the SH4 PC to the supplied value - this will be the next
100 * instruction executed. This should only be called while the system is stopped.
102 void sh4_set_pc( int pc );
105 * Execute (using the emulator) a single instruction (in other words, perform a
106 * single-step operation).
108 gboolean sh4_execute_instruction( void );
110 /* SH4 breakpoints */
112 #define BREAK_ONESHOT 1
115 void sh4_set_breakpoint( uint32_t pc, int type );
116 gboolean sh4_clear_breakpoint( uint32_t pc, int type );
117 int sh4_get_breakpoint( uint32_t pc );
125 #endif /* !lxdream_sh4_H */
.