summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2014-05-15 05:13:59 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2014-05-15 05:13:59 +0000
commit2978c6f362249979b8cf4ac58f62413795bd12c6 (patch)
tree0b34de8508abddc069445f49a6e848f0904bcb4e /src
parentc3c2cfe2771dd4db3cc79a6ce43934e9d032913e (diff)
6883sam: fixed uninitialized class members, just in case. nw.
Diffstat (limited to 'src')
-rw-r--r--src/mess/machine/6883sam.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mess/machine/6883sam.c b/src/mess/machine/6883sam.c
index e006f7ebe6f..b8ffbcab6f1 100644
--- a/src/mess/machine/6883sam.c
+++ b/src/mess/machine/6883sam.c
@@ -70,6 +70,8 @@ const device_type SAM6883 = &device_creator<sam6883_device>;
sam6883_device::sam6883_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, SAM6883, "SAM6883", tag, owner, clock, "sam6883", __FILE__),
+ m_cpu_tag(NULL),
+ m_cpu_space_ref(AS_PROGRAM),
m_read_res(*this),
m_space_0000(*this),
m_space_8000(*this),