Re-fix it more portably.

This commit is contained in:
R. Belmont 2009-08-07 05:30:42 +00:00
parent 2dbacc1a43
commit 57dd49d32e

View File

@ -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"));
}