fix region jumper on psikyo4 (loderndf) no idea when this got broken.. looks to have been broken for a while tho.

This commit is contained in:
davidhay 2008-08-02 22:03:56 +00:00
parent 12b53262fc
commit a433ae612f

View File

@ -215,12 +215,12 @@ static READ32_HANDLER( ps4_eeprom_r )
{
if (ACCESSING_BITS_16_31)
{
return ((eeprom_read_bit() << 20)); /* EEPROM */
return (input_port_read(machine, "JP4")<<16) | ((eeprom_read_bit() << 20)); /* EEPROM */
}
// logerror("Unk EEPROM read mask %x\n", mem_mask);
return input_port_read(machine, "JP4")<<16;
return 0x00;
}
static INTERRUPT_GEN(psikyosh_interrupt)