diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-10-31 22:17:50 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-10-31 22:17:50 -0700 |
commit | 0e881e49fcf3d616c99631f56da80ec69d4f594f (patch) | |
tree | d2002e8bf49292d536026d054e23635c901786d7 /m68k_core.h | |
parent | c29cc674cf4155f3377dbdb29193db9f7456a9fe (diff) |
Implement interrupt latency. Fixes Sesame Street: Counting Cafe and gives accurate results in my test ROM
Diffstat (limited to 'm68k_core.h')
-rw-r--r-- | m68k_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m68k_core.h b/m68k_core.h index 7135000..86aed4c 100644 --- a/m68k_core.h +++ b/m68k_core.h @@ -59,11 +59,11 @@ typedef struct { uint32_t int_num; uint16_t *mem_pointers[NUM_MEM_AREAS]; void *video_context; - uint16_t reserved; native_map_slot *native_code_map; m68k_options *options; void *system; + uint8_t int_pending; uint8_t ram_code_flags[]; } m68k_context; |