summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/unixpc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/unixpc.cpp')
-rw-r--r--src/mame/drivers/unixpc.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/unixpc.cpp b/src/mame/drivers/unixpc.cpp
index 9d3518d71ac..4f9f3ebba4b 100644
--- a/src/mame/drivers/unixpc.cpp
+++ b/src/mame/drivers/unixpc.cpp
@@ -260,7 +260,8 @@ void unixpc_state::disk_control_w(uint8_t data)
{
logerror("disk_control_w: %02x\n", data);
- // TODO: bits 0-2 = head select
+ // bits 0-2 = head select
+ m_hdc->head_w(BIT(data, 0, 2));
m_hdc->drdy_w(BIT(data, 3) && m_hdr0->exists());