mirror of
https://github.com/holub/mame
synced 2025-07-02 00:29:37 +03:00
apple2e: fix C800 internal ROM reading [R. Belmont]
This commit is contained in:
parent
e6a54bcc23
commit
4e2fefdd15
@ -1978,7 +1978,6 @@ READ8_MEMBER(apple2e_state::c800_int_r)
|
|||||||
{
|
{
|
||||||
m_cnxx_slot = CNXX_UNCLAIMED;
|
m_cnxx_slot = CNXX_UNCLAIMED;
|
||||||
update_slotrom_banks();
|
update_slotrom_banks();
|
||||||
return 0xff;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return m_rom_ptr[0x800 + offset];
|
return m_rom_ptr[0x800 + offset];
|
||||||
@ -1995,7 +1994,6 @@ READ8_MEMBER(apple2e_state::c800_b2_int_r)
|
|||||||
{
|
{
|
||||||
m_cnxx_slot = CNXX_UNCLAIMED;
|
m_cnxx_slot = CNXX_UNCLAIMED;
|
||||||
update_slotrom_banks();
|
update_slotrom_banks();
|
||||||
return 0xff;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return m_rom_ptr[0x4800 + offset];
|
return m_rom_ptr[0x4800 + offset];
|
||||||
|
Loading…
Reference in New Issue
Block a user