This commit is contained in:
Nathan Woods 2014-02-04 11:31:41 +00:00
parent 43f27b7772
commit bf06b4f331

View File

@ -199,7 +199,7 @@ READ8_MEMBER( c1571_device::via0_pa_r )
UINT8 data = 0;
// track 0 sense
data |= m_floppy->trk00_r();
data |= (m_floppy->trk00_r() ? 0x01 : 0x00);
// byte ready
data |= m_ga->byte_r() << 7;