mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
model2.cpp: avoid daytona with master controller to crash (nw)
This commit is contained in:
parent
205a65e3a8
commit
cbbbf1024c
@ -2584,6 +2584,11 @@ void model2_state::geo_parse( void )
|
||||
/* if it's a jump opcode, do the jump */
|
||||
if ( opcode & 0x80000000 )
|
||||
{
|
||||
// TODO: daytona with master network enabled hardlocks by trying a jump with 0xffff0080 as opcode
|
||||
// bad timings for geo_parse?
|
||||
if(opcode & 0x078000000 )
|
||||
return;
|
||||
|
||||
/* get the address */
|
||||
address = (opcode & 0x1FFFF) / 4;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user