mirror of
https://github.com/holub/mame
synced 2025-05-21 13:18:56 +03:00
More compile fixes.
This commit is contained in:
parent
a62a727e52
commit
c40879b61f
@ -105,7 +105,7 @@ static WRITE16_HANDLER( io_latch_w )
|
||||
asic65_reset(space->machine, (~data >> 14) & 1);
|
||||
|
||||
/* bits 13-11 are the MO control bits */
|
||||
atarirle_control_w(space, 0, (data >> 11) & 7);
|
||||
atarirle_control_w(space->machine, 0, (data >> 11) & 7);
|
||||
}
|
||||
|
||||
/* lower byte */
|
||||
|
@ -130,7 +130,7 @@ static WRITE32_HANDLER( latch_w )
|
||||
if (ACCESSING_BITS_24_31)
|
||||
{
|
||||
/* bits 13-11 are the MO control bits */
|
||||
atarirle_control_w(space,0, (data >> 27) & 7);
|
||||
atarirle_control_w(space->machine,0, (data >> 27) & 7);
|
||||
}
|
||||
|
||||
/* lower byte */
|
||||
|
@ -332,7 +332,7 @@ static void amiga_m68k_reset(void)
|
||||
|
||||
MACHINE_RESET( amiga )
|
||||
{
|
||||
const address_space *space = cpu_get_address_space(Machine->cpu[0], ADDRESS_SPACE_PROGRAM);
|
||||
// const address_space *space = cpu_get_address_space(Machine->cpu[0], ADDRESS_SPACE_PROGRAM);
|
||||
|
||||
/* set m68k reset function */
|
||||
cpu_set_info_fct(machine->cpu[0], CPUINFO_PTR_M68K_RESET_CALLBACK, (genf *)amiga_m68k_reset);
|
||||
|
Loading…
Reference in New Issue
Block a user