summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-01-24 01:02:19 +1100
committer Vas Crabb <vas@vastheman.com>2018-01-24 01:02:19 +1100
commit537cb66399a189ba0f60034aa791d217422b2d8f (patch)
treee11f362f4bb580da116a998384b963614485374f
parent7168abee36c2d2eec90401bf1c962927b04b8bcc (diff)
missed these (nw)
-rw-r--r--src/devices/sound/cdp1863.h2
-rw-r--r--src/devices/sound/cdp1869.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/cdp1863.h b/src/devices/sound/cdp1863.h
index bb47f0ea5f2..ddcb5187211 100644
--- a/src/devices/sound/cdp1863.h
+++ b/src/devices/sound/cdp1863.h
@@ -50,7 +50,7 @@ public:
// inline configuration helpers
static void static_set_clock2(device_t &device, int clock2);
- static void static_set_clock2(device_t &device, const XTAL &xtal) { xtal.check("selecting cdp1863 clock"); static_set_clock2(device, xtal.value()); }
+ static void static_set_clock2(device_t &device, const XTAL &xtal) { xtal.validate("selecting cdp1863 clock"); static_set_clock2(device, xtal.value()); }
DECLARE_WRITE8_MEMBER( str_w );
void str_w(uint8_t data);
diff --git a/src/devices/sound/cdp1869.h b/src/devices/sound/cdp1869.h
index 234757a2b42..e7013d0eceb 100644
--- a/src/devices/sound/cdp1869.h
+++ b/src/devices/sound/cdp1869.h
@@ -194,7 +194,7 @@ public:
static void static_set_char_ram_write(device_t &device, char_ram_write_delegate &&cb) { downcast<cdp1869_device &>(device).m_out_char_ram_func = std::move(cb); }
static void static_set_pcb_read(device_t &device, pcb_read_delegate &&cb) { downcast<cdp1869_device &>(device).m_in_pcb_func = std::move(cb); }
static void static_set_color_clock(device_t &device, int color_clock) { downcast<cdp1869_device &>(device).m_color_clock = color_clock; }
- static void static_set_color_clock(device_t &device, const XTAL &xtal) { xtal.check("selecting cdp1869 clock"); static_set_color_clock(device, xtal.value()); }
+ static void static_set_color_clock(device_t &device, const XTAL &xtal) { xtal.validate("selecting cdp1869 clock"); static_set_color_clock(device, xtal.value()); }
virtual DECLARE_ADDRESS_MAP(io_map, 8);
virtual DECLARE_ADDRESS_MAP(char_map, 8);