diff options
Diffstat (limited to 'sim/m68hc11')
-rw-r--r-- | sim/m68hc11/ChangeLog | 5 | ||||
-rw-r--r-- | sim/m68hc11/sim-main.h | 9 |
2 files changed, 7 insertions, 7 deletions
diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog index a070cdd..c8d1177 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,3 +1,8 @@ +2021-05-17 Mike Frysinger <vapier@gentoo.org> + + * sim-main.h (SIM_HAVE_COMMON_SIM_STATE): Define. + (struct sim_state): Delete. + 2021-05-16 Mike Frysinger <vapier@gentoo.org> * dv-m68hc11.c, dv-m68hc11eepr.c, dv-m68hc11sio.c, dv-m68hc11spi.c, diff --git a/sim/m68hc11/sim-main.h b/sim/m68hc11/sim-main.h index 9b461ff..d72ede1 100644 --- a/sim/m68hc11/sim-main.h +++ b/sim/m68hc11/sim-main.h @@ -20,6 +20,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef _SIM_MAIN_H #define _SIM_MAIN_H +#define SIM_HAVE_COMMON_SIM_STATE + #include "sim-basics.h" #include "sim-signal.h" #include "sim-base.h" @@ -560,13 +562,6 @@ extern int m68hc11cpu_clear_oscillator (SIM_DESC sd, const char *port); extern void m68hc11cpu_set_port (struct hw *me, sim_cpu *cpu, unsigned addr, uint8 val); -/* The current state of the processor; registers, memory, etc. */ - -struct sim_state { - sim_cpu *cpu[MAX_NR_PROCESSORS]; - sim_state_base base; -}; - extern void sim_board_reset (SIM_DESC sd); #define PRINT_TIME 0x01 |