summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/wangpc
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-04-28 08:10:30 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-04-28 08:10:30 -0400
commit523e9c8cff1dc08c9f3c555254655f1d9e2c028d (patch)
tree5c79ea5d678b0f9b8ccfa33a87535902fc72f8ec /src/devices/bus/wangpc
parentb01bc82f140fd10551bf86a7d64545488d3c9ed2 (diff)
mc6845: Use standard device method to adjust input clock (nw)
Diffstat (limited to 'src/devices/bus/wangpc')
-rw-r--r--src/devices/bus/wangpc/lvc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/wangpc/lvc.cpp b/src/devices/bus/wangpc/lvc.cpp
index 0d316e5b15b..9f6a8d59626 100644
--- a/src/devices/bus/wangpc/lvc.cpp
+++ b/src/devices/bus/wangpc/lvc.cpp
@@ -298,11 +298,11 @@ void wangpc_lvc_device::wangpcbus_aiowc_w(offs_t offset, uint16_t mem_mask, uint
if (OPTION_80_COL)
{
- m_crtc->set_clock(XTAL(14'318'181) / 8);
+ m_crtc->set_unscaled_clock(XTAL(14'318'181) / 8);
}
else
{
- m_crtc->set_clock(XTAL(14'318'181) / 16);
+ m_crtc->set_unscaled_clock(XTAL(14'318'181) / 16);
}
}
break;