More compile fixes.

This commit is contained in:
R. Belmont 2008-11-15 01:21:19 +00:00
parent a62a727e52
commit c40879b61f
3 changed files with 3 additions and 3 deletions

View File

@ -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 */

View File

@ -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 */

View File

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