summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/vt83c461.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/vt83c461.cpp')
-rw-r--r--src/devices/machine/vt83c461.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/vt83c461.cpp b/src/devices/machine/vt83c461.cpp
index 61add7ca65c..005e41d2848 100644
--- a/src/devices/machine/vt83c461.cpp
+++ b/src/devices/machine/vt83c461.cpp
@@ -35,7 +35,7 @@ void vt83c461_device::device_start()
save_item(NAME(m_config_register_num));
}
-uint32_t vt83c461_device::read_config(offs_t offset)
+uint32_t vt83c461_device::config_r(offs_t offset)
{
uint32_t result = 0;
@@ -68,7 +68,7 @@ uint32_t vt83c461_device::read_config(offs_t offset)
return result;
}
-void vt83c461_device::write_config(offs_t offset, uint32_t data)
+void vt83c461_device::config_w(offs_t offset, uint32_t data)
{
/* logit */
LOG("%s:IDE via config write to %X = %08X\n", machine().describe_context(), offset, data);