mirror of
https://github.com/holub/mame
synced 2025-05-20 12:48:53 +03:00
address space compilation errors.
This commit is contained in:
parent
a6b0582343
commit
1271bd2000
@ -352,5 +352,7 @@ VIDEO_UPDATE( armedf )
|
|||||||
|
|
||||||
VIDEO_EOF( armedf )
|
VIDEO_EOF( armedf )
|
||||||
{
|
{
|
||||||
buffer_spriteram16_w(machine,0,0,0xffff);
|
const address_space *space = cpu_get_address_space(machine->cpu[0], ADDRESS_SPACE_PROGRAM);
|
||||||
|
|
||||||
|
buffer_spriteram16_w(space,0,0,0xffff);
|
||||||
}
|
}
|
||||||
|
@ -443,11 +443,11 @@ WRITE32_HANDLER( zeus_w )
|
|||||||
|
|
||||||
/* 32-bit mode */
|
/* 32-bit mode */
|
||||||
if (zeusbase[0x80] & 0x00020000)
|
if (zeusbase[0x80] & 0x00020000)
|
||||||
zeus_register32_w(space, offset, data, logit);
|
zeus_register32_w(space->machine, offset, data, logit);
|
||||||
|
|
||||||
/* 16-bit mode */
|
/* 16-bit mode */
|
||||||
else
|
else
|
||||||
zeus_register16_w(space, offset, data, logit);
|
zeus_register16_w(space->machine, offset, data, logit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -472,7 +472,7 @@ WRITE32_HANDLER( zeus2_w )
|
|||||||
offset != 0x50 && offset != 0x51 && offset != 0x57 && offset != 0x58 && offset != 0x59 && offset != 0x5a && offset != 0x5e);
|
offset != 0x50 && offset != 0x51 && offset != 0x57 && offset != 0x58 && offset != 0x59 && offset != 0x5a && offset != 0x5e);
|
||||||
if (logit)
|
if (logit)
|
||||||
logerror("%06X:zeus2_w", cpu_get_pc(space->cpu));
|
logerror("%06X:zeus2_w", cpu_get_pc(space->cpu));
|
||||||
zeus_register32_w(space, offset, data, logit);
|
zeus_register32_w(space->machine, offset, data, logit);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user