From cf486a7062e61095e832d379ea59b7f55578e454 Mon Sep 17 00:00:00 2001 From: AJR Date: Mon, 2 Nov 2020 13:43:31 -0500 Subject: [PATCH] ns32000: Initialize members --- src/devices/cpu/ns32000/ns32000.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/devices/cpu/ns32000/ns32000.cpp b/src/devices/cpu/ns32000/ns32000.cpp index acfddfcdd29..9c059c3d099 100644 --- a/src/devices/cpu/ns32000/ns32000.cpp +++ b/src/devices/cpu/ns32000/ns32000.cpp @@ -81,6 +81,21 @@ template ns32000_device::ns32000_device(const machine_config & , m_interrupt_config("interrupt", ENDIANNESS_LITTLE, databits, addrbits, 0) , m_fpu(*this, finder_base::DUMMY_TAG) , m_icount(0) + , m_pc(0) + , m_sb(0) + , m_fp(0) + , m_sp1(0) + , m_sp0(0) + , m_intbase(0) + , m_psr(0) + , m_mod(0) + , m_cfg(0) + , m_r{0} + , m_f{0} + , m_nmi_line(false) + , m_int_line(false) + , m_wait(false) + , m_sequential(false) { }