summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Philip Bennett <p.j.bennett@gmail.com>2018-12-24 02:53:01 -0800
committer Philip Bennett <p.j.bennett@gmail.com>2018-12-24 02:53:01 -0800
commitc043145cb668149d0f190cefcdc734620c73e5a9 (patch)
treea9475cc136344e7e5fae3d890d9aa6b6105dba26
parente669182484f5de50cebf0cb18f24cf2e3add34b9 (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;