diff options
author | Mike Pavone <pavone@retrodev.com> | 2013-01-06 10:54:45 -0800 |
---|---|---|
committer | Mike Pavone <pavone@retrodev.com> | 2013-01-06 10:54:45 -0800 |
commit | b03c39d0523b83390c9ccef45b47eaaf58b42c03 (patch) | |
tree | 33a1e715a36904451b5d6124467b4d9525bc0634 /m68k_to_x86.c | |
parent | 71dec66604fd28671cf613cd7cd26ccfb2376da8 (diff) |
Initialize status register to proper value on startup
Diffstat (limited to 'm68k_to_x86.c')
-rw-r--r-- | m68k_to_x86.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/m68k_to_x86.c b/m68k_to_x86.c index c872f0b..83cff41 100644 --- a/m68k_to_x86.c +++ b/m68k_to_x86.c @@ -3382,5 +3382,6 @@ void init_68k_context(m68k_context * context, native_map_slot * native_code_map, context->native_code_map = native_code_map; context->options = opts; context->int_cycle = 0xFFFFFFFF; + context->status = 0x27; } |