summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/upd765.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/upd765.cpp')
-rw-r--r--src/devices/machine/upd765.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/devices/machine/upd765.cpp b/src/devices/machine/upd765.cpp
index eb188c31718..71f3cdd5cb8 100644
--- a/src/devices/machine/upd765.cpp
+++ b/src/devices/machine/upd765.cpp
@@ -3296,6 +3296,7 @@ void upd72069_device::auxcmd_w(uint8_t data)
case 0x36: // reset
soft_reset();
break;
+ case 0x0e:
case 0x1e: // motor on, probably
for(unsigned i = 0; i < 4; i++)
if(flopi[i].dev)
@@ -3304,6 +3305,14 @@ void upd72069_device::auxcmd_w(uint8_t data)
result[0] = ST0_UNK;
result_pos = 1;
break;
+ case 0x88:
+ case 0x1b:
+ case 0x4f:
+ case 0xd3: // unknown
+ main_phase = PHASE_RESULT;
+ result[0] = ST0_UNK;
+ result_pos = 1;
+ break;
}
}