summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/hcd62121
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/hcd62121
parentae2f72348d5d2c5d55f1e85cc133912638d0effb (diff)
Fixed uninitialized class members
Diffstat (limited to 'src/devices/cpu/hcd62121')
-rw-r--r--src/devices/cpu/hcd62121/hcd62121.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/cpu/hcd62121/hcd62121.cpp b/src/devices/cpu/hcd62121/hcd62121.cpp
index f45ebdbe03d..2fe0a889a9d 100644
--- a/src/devices/cpu/hcd62121/hcd62121.cpp
+++ b/src/devices/cpu/hcd62121/hcd62121.cpp
@@ -32,15 +32,15 @@ const device_type HCD62121 = &device_creator<hcd62121_cpu_device>;
hcd62121_cpu_device::hcd62121_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: cpu_device(mconfig, HCD62121, "Hitachi HCD62121", tag, owner, clock, "hcd62121", __FILE__)
, m_program_config("program", ENDIANNESS_BIG, 8, 24, 0)
- , m_io_config("io", ENDIANNESS_BIG, 8, 8, 0)
- , m_sp(0)
+ , m_io_config("io", ENDIANNESS_BIG, 8, 8, 0), m_prev_pc(0)
+ , m_sp(0)
, m_ip(0)
, m_dsize(0)
, m_cseg(0)
, m_dseg(0)
, m_sseg(0)
, m_f(0)
- , m_lar(0)
+ , m_lar(0), m_program(nullptr), m_io(nullptr), m_icount(0)
{
}