diff options
author | 2008-01-19 04:34:16 +0000 | |
---|---|---|
committer | 2008-01-19 04:34:16 +0000 | |
commit | eef3b17f7ef407efed7c8ea2d1d48c4c584c8714 (patch) | |
tree | b7f86dbecd1a6bdbabdeeaf88b1071219d476833 /src/emu/cpu/m68000/m68kcpu.c | |
parent | fcf7dd71a9777123faf43dd263602841a7138582 (diff) |
(From Atari Ace)
> This one line fix addresses the crash reported in newui0118u4ora. I
> think most of the other issues reported in the bug are fixed by this
> as well, but I didn't test this thoroughly. Perhaps we should close
> the bug and have the testers file a new bug if remaining issues are
> found.
Diffstat (limited to 'src/emu/cpu/m68000/m68kcpu.c')
-rw-r--r-- | src/emu/cpu/m68000/m68kcpu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/cpu/m68000/m68kcpu.c b/src/emu/cpu/m68000/m68kcpu.c index fa918273fa1..f937d4b89da 100644 --- a/src/emu/cpu/m68000/m68kcpu.c +++ b/src/emu/cpu/m68000/m68kcpu.c @@ -919,6 +919,7 @@ void m68k_pulse_reset(void) m68ki_clear_trace(); /* Interrupt mask to level 7 */ FLAG_INT_MASK = 0x0700; + CPU_INT_LEVEL = 0; /* Reset VBR */ REG_VBR = 0; /* Go to supervisor mode */ |