fix psikyo4 region without breaking eeprom even ;-)

This commit is contained in:
davidhay 2008-08-02 22:06:20 +00:00
parent 86c919a2d7
commit 00072016e5

View File

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