From 03352a5630c1edb9755c45c628f2d91a7842f449 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20St=C3=B6neberg?= Date: Fri, 22 Feb 2013 21:05:31 +0000 Subject: [PATCH] fixed uninitialized variables in src/emu/cpu/hd61700/hd61700.c (nw) --- src/emu/cpu/hd61700/hd61700.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/emu/cpu/hd61700/hd61700.c b/src/emu/cpu/hd61700/hd61700.c index 06ae03d9a12..c3460b6c005 100644 --- a/src/emu/cpu/hd61700/hd61700.c +++ b/src/emu/cpu/hd61700/hd61700.c @@ -101,7 +101,11 @@ const device_type HD61700 = &device_creator; hd61700_cpu_device::hd61700_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : cpu_device(mconfig, HD61700, "HD61700", tag, owner, clock), - m_program_config("program", ENDIANNESS_BIG, 16, 18, -1) + m_program_config("program", ENDIANNESS_BIG, 16, 18, -1), + m_ppc(0x0000), + m_curpc(0x0000), + m_pc(0), + m_flags(0) { // ... }