summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/sm8500/sm8500.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-11-19 19:44:23 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2015-11-19 19:45:32 +0100
commitb7f4c4bd2084970f3ec41057a6bafbba96a2386a (patch)
tree0228ce3f01376ddc19fa529409f5281e8040e433 /src/devices/cpu/sm8500/sm8500.cpp
parentae2f72348d5d2c5d55f1e85cc133912638d0effb (diff)
Fixed uninitialized class members
Diffstat (limited to 'src/devices/cpu/sm8500/sm8500.cpp')
-rw-r--r--src/devices/cpu/sm8500/sm8500.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/sm8500/sm8500.cpp b/src/devices/cpu/sm8500/sm8500.cpp
index 6159d8a45fa..fa7f3b01b35 100644
--- a/src/devices/cpu/sm8500/sm8500.cpp
+++ b/src/devices/cpu/sm8500/sm8500.cpp
@@ -37,11 +37,11 @@ sm8500_cpu_device::sm8500_cpu_device(const machine_config &mconfig, const char *
, m_program_config("program", ENDIANNESS_BIG, 8, 16, 0)
, m_dma_func(*this)
, m_timer_func(*this)
- , m_PC(0)
- , m_SYS(0)
- , m_SP(0)
+ , m_PC(0), m_IE0(0), m_IE1(0), m_IR0(0), m_IR1(0)
+ , m_SYS(0), m_CKC(0), m_clock_changed(0)
+ , m_SP(0)
, m_PS0(0)
- , m_PS1(0)
+ , m_PS1(0), m_IFLAGS(0), m_CheckInterrupts(0), m_halted(0), m_icount(0), m_program(nullptr), m_oldpc(0)
{
}