Some corrections/optimizations.

This commit is contained in:
Roberto Fresca 2008-09-05 21:31:13 +00:00
parent 46a808f72d
commit 520c511cd0

View File

@ -377,15 +377,9 @@ static READ8_HANDLER( videopkr_io_r )
}
break;
}
case 0x5f:
case 0xdf:
{
n_offs = ((p1 & 0xc0) << 2 ) + offset;
valor = data_ram[offset];
break;
}
case 0x5f:
{
n_offs = ((p1 & 0xc0) << 2 ) + offset;
valor = data_ram[offset];
break;
}
@ -617,7 +611,7 @@ static TIMER_CALLBACK(sound_t1_callback)
if (dc_40103 == 0)
{
cpunum_set_input_line(machine, 1, 0, 1);
cpunum_set_input_line(machine, 1, 0, ASSERT_LINE);
}
}
}