summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/rc2014/cf.cpp
diff options
context:
space:
mode:
author Miodrag Milanović <mmicko@gmail.com>2022-07-07 11:08:04 +0200
committer GitHub <noreply@github.com>2022-07-07 19:08:04 +1000
commitf3fb60fee6fb83c80e776fcfd1bd271dc83d126f (patch)
tree4c35a9c28c78b71cb359ad05708eaefca1318019 /src/devices/bus/rc2014/cf.cpp
parentf079cbf8dc162dcf7a2ddb79baae8a65e12933b6 (diff)
bus/ide: Added ATA CompactFlash device. (#9782)
Diffstat (limited to 'src/devices/bus/rc2014/cf.cpp')
-rw-r--r--src/devices/bus/rc2014/cf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/rc2014/cf.cpp b/src/devices/bus/rc2014/cf.cpp
index c30da3f429e..9640853da86 100644
--- a/src/devices/bus/rc2014/cf.cpp
+++ b/src/devices/bus/rc2014/cf.cpp
@@ -56,7 +56,7 @@ void compact_flash_device::device_reset()
void compact_flash_device::device_add_mconfig(machine_config &config)
{
- ATA_INTERFACE(config, m_ata).options(ata_devices, "hdd", nullptr, true);
+ ATA_INTERFACE(config, m_ata).options(ata_devices, "cf", nullptr, true);
}
}