mirror of
https://github.com/holub/mame
synced 2025-04-28 19:14:55 +03:00
Merge branch 'master' of https://github.com/mamedev/mame
This commit is contained in:
commit
ba54dd22e5
@ -210,9 +210,9 @@ uint32_t backfire_state::screen_update_right(screen_device &screen, bitmap_ind16
|
|||||||
|
|
||||||
READ32_MEMBER(backfire_state::eeprom_r)
|
READ32_MEMBER(backfire_state::eeprom_r)
|
||||||
{
|
{
|
||||||
return ((m_eeprom->do_read() << 24) | m_io_in0->read()
|
return (m_eeprom->do_read() << 24) | m_io_in0->read()
|
||||||
| ((m_io_in2->read() & 0xbf) << 16)
|
| ((m_io_in2->read() & 0xbf) << 16)
|
||||||
| ((m_io_in3->read() & 0x40) << 16)) ^ (m_adc->eoc_r() << 26) ;
|
| ((m_io_in3->read() & 0x40) << 16) | (m_adc->eoc_r() << 26) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
READ32_MEMBER(backfire_state::control2_r)
|
READ32_MEMBER(backfire_state::control2_r)
|
||||||
|
Loading…
Reference in New Issue
Block a user