summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author cracyc <cracyc@users.noreply.github.com>2016-10-21 15:21:50 -0500
committer cracyc <cracyc@users.noreply.github.com>2016-10-21 15:21:50 -0500
commita44ecc354f6203ea589bac435563ce0642fba28b (patch)
tree34ddc5b21dc1500022d4f6c8a62a048d0d6b03c3
parent8b0d856e1596faf26c552612fdc71c3dfbeba44b (diff)
mcd: vis links loads all the way now (nw)
-rw-r--r--src/devices/bus/isa/mcd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/isa/mcd.cpp b/src/devices/bus/isa/mcd.cpp
index 2a6b5422d72..d2cb19356e8 100644
--- a/src/devices/bus/isa/mcd.cpp
+++ b/src/devices/bus/isa/mcd.cpp
@@ -89,8 +89,8 @@ bool mcd_isa_device::read_sector(bool first)
if(m_mode & 0x40)
{
//correct the header
- m_buf[12] = m_readmsf >> 16;
- m_buf[13] = m_readmsf >> 8;
+ m_buf[12] = dec_2_bcd(m_readmsf >> 16);
+ m_buf[13] = dec_2_bcd(m_readmsf >> 8);
}
m_readmsf = lba_to_msf_alt(lba + 1);
m_buf_count = m_dmalen + 1;