summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Philip Bennett <p.j.bennett@gmail.com>2018-12-24 02:53:01 -0800
committer Vas Crabb <vas@vastheman.com>2018-12-24 22:22:46 +1100
commita050c9b095dbfffffbaef5b9cd4378b769af2815 (patch)
treeed4e3535af89b8675cd1a3bc01ce57f1d9461ef2
parent25c5a8c820afa4dbb9d88e31669e1dac49c224a4 (diff)
doh, value is split over two bytes (nw)
-rw-r--r--src/devices/machine/t10mmc.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/machine/t10mmc.cpp b/src/devices/machine/t10mmc.cpp
index 64958fa25bf..68b86907c21 100644
--- a/src/devices/machine/t10mmc.cpp
+++ b/src/devices/machine/t10mmc.cpp
@@ -738,8 +738,7 @@ void t10mmc::ReadData( uint8_t *data, int dataLength )
data[6] = 0;
data[7] = 0;
data[8] = 0x02; data[9] = 0xc0; // 4x speed
- data[10] = 0;
- data[11] = 256; // 256 volume levels
+ data[10] = 0x01; data[11] = 0x00; // 256 volume levels supported
data[12] = 0x00; data[13] = 0x00; // buffer
data[14] = 0x02; data[15] = 0xc0; // 4x read speed
data[16] = 0;