From 85030d25e70006a35da85159a54f0aeeaaca5e87 Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 9 Apr 2020 22:30:26 -0400 Subject: [PATCH] Fix build (nw) --- src/devices/cpu/cp1610/cp1610.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/cpu/cp1610/cp1610.cpp b/src/devices/cpu/cp1610/cp1610.cpp index 12cf353c8cc..d2f9affa562 100644 --- a/src/devices/cpu/cp1610/cp1610.cpp +++ b/src/devices/cpu/cp1610/cp1610.cpp @@ -3399,10 +3399,10 @@ void cp1610_cpu_device::execute_set_input(int irqline, int state) cp1610_cpu_device::cp1610_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : cpu_device(mconfig, CP1610, tag, owner, clock) , m_program_config("program", ENDIANNESS_BIG, 16, 16, -1) - , m_read_bext(*this) - , m_read_iab(*this) , m_intr_state(0) , m_intrm_state(0) + , m_read_bext(*this) + , m_read_iab(*this) { }