summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/m6509.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/m6502/m6509.cpp
parentae2f72348d5d2c5d55f1e85cc133912638d0effb (diff)
Fixed uninitialized class members
Diffstat (limited to 'src/devices/cpu/m6502/m6509.cpp')
-rw-r--r--src/devices/cpu/m6502/m6509.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/m6502/m6509.cpp b/src/devices/cpu/m6502/m6509.cpp
index 77af9e8f1f7..ec21e4c725c 100644
--- a/src/devices/cpu/m6502/m6509.cpp
+++ b/src/devices/cpu/m6502/m6509.cpp
@@ -14,7 +14,7 @@
const device_type M6509 = &device_creator<m6509_device>;
m6509_device::m6509_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- m6502_device(mconfig, M6509, "M6509", tag, owner, clock, "m6509", __FILE__)
+ m6502_device(mconfig, M6509, "M6509", tag, owner, clock, "m6509", __FILE__), XPC(0), bank_i(0), bank_y(0)
{
program_config.m_addrbus_width = 20;
program_config.m_logaddr_width = 20;