mirror of
https://github.com/holub/mame
synced 2025-05-11 00:28:49 +03:00
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:
parent
12b53262fc
commit
a433ae612f
@ -215,12 +215,12 @@ static READ32_HANDLER( ps4_eeprom_r )
|
|||||||
{
|
{
|
||||||
if (ACCESSING_BITS_16_31)
|
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);
|
// logerror("Unk EEPROM read mask %x\n", mem_mask);
|
||||||
|
|
||||||
return input_port_read(machine, "JP4")<<16;
|
return 0x00;
|
||||||
}
|
}
|
||||||
|
|
||||||
static INTERRUPT_GEN(psikyosh_interrupt)
|
static INTERRUPT_GEN(psikyosh_interrupt)
|
||||||
|
Loading…
Reference in New Issue
Block a user