summaryrefslogtreecommitdiff
path: root/m68k_core.h
diff options
context:
space:
mode:
authorMichael Pavone <pavone@retrodev.com>2015-11-08 15:51:57 -0800
committerMichael Pavone <pavone@retrodev.com>2015-11-08 15:51:57 -0800
commitc125d82e2076aad6d24062212c55e5db834cd90c (patch)
treed7dde6fdb87a935ae431517da1e609b1b9e7506b /m68k_core.h
parente4c347d394fc7ee86e8c7bb6d10029ad7157a6d5 (diff)
Initial work for allowing loading a ROM from menu
Diffstat (limited to 'm68k_core.h')
-rw-r--r--m68k_core.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/m68k_core.h b/m68k_core.h
index 86aed4c..b796061 100644
--- a/m68k_core.h
+++ b/m68k_core.h
@@ -59,11 +59,12 @@ typedef struct {
uint32_t int_num;
uint16_t *mem_pointers[NUM_MEM_AREAS];
void *video_context;
-
+ void *resume_pc;
native_map_slot *native_code_map;
m68k_options *options;
void *system;
uint8_t int_pending;
+ uint8_t should_return;
uint8_t ram_code_flags[];
} m68k_context;