comparison m68k_core.c @ 1778:30b5952fd32e mame_interp

Get latency between interrupt latch and interrupt acceptance working with Musashi
author Michael Pavone <pavone@retrodev.com>
date Wed, 13 Mar 2019 22:01:22 -0700
parents d5118d6f9c75
children 0c6d07f91346
comparison
equal deleted inserted replaced
1777:5358a7126b96 1778:30b5952fd32e
1285 context->options = opts; 1285 context->options = opts;
1286 m68k_init_cpu_m68000(device); 1286 m68k_init_cpu_m68000(device);
1287 1287
1288 #endif 1288 #endif
1289 context->int_cycle = CYCLE_NEVER; 1289 context->int_cycle = CYCLE_NEVER;
1290 context->int_pending = 255;
1290 context->status = 0x27; 1291 context->status = 0x27;
1291 context->reset_handler = (code_ptr)reset_handler; 1292 context->reset_handler = (code_ptr)reset_handler;
1292 return context; 1293 return context;
1293 } 1294 }
1294 1295