mirror of
https://github.com/holub/mame
synced 2025-05-03 04:56:45 +03:00
[SG1000] MSVC fix (nw)
This commit is contained in:
parent
83c7f8c03c
commit
df9fcffa09
@ -895,7 +895,7 @@ READ8_MEMBER( sf7000_state::ppi_pa_r )
|
||||
|
||||
UINT8 data = 0;
|
||||
|
||||
data |= m_fdc->get_irq();
|
||||
data |= m_fdc->get_irq() ? 0x01 : 0x00;
|
||||
data |= m_centronics->busy_r() << 1;
|
||||
data |= m_floppy0->idx_r() << 2;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user