mirror of
https://github.com/holub/mame
synced 2025-05-24 23:05:32 +03:00
Re-fix it more portably.
This commit is contained in:
parent
2dbacc1a43
commit
57dd49d32e
@ -5272,7 +5272,7 @@ static DRIVER_INIT( atomiswave )
|
||||
UINT64 *ROM = (UINT64 *)memory_region(machine, "maincpu");
|
||||
|
||||
// patch out long startup delay
|
||||
ROM[0x98e/8] = (ROM[0x98e/8] & (UINT64)0xffffffffffff) | (UINT64)0x0009<<48;
|
||||
ROM[0x98e/8] = (ROM[0x98e/8] & U64(0xffffffffffff)) | (UINT64)0x0009<<48;
|
||||
|
||||
intelflash_init(machine, 0, FLASH_MACRONIX_29L001MC, memory_region(machine, "maincpu"));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user