summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/memory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/memory.cpp')
-rw-r--r--src/emu/memory.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/emu/memory.cpp b/src/emu/memory.cpp
index 653b858569f..f9e5e27cb1b 100644
--- a/src/emu/memory.cpp
+++ b/src/emu/memory.cpp
@@ -335,7 +335,8 @@ public:
// construction/destruction
handler_entry_read(UINT8 width, endianness_t endianness, UINT8 **rambaseptr)
- : handler_entry(width, endianness, rambaseptr)
+ : handler_entry(width, endianness, rambaseptr),
+ m_ioport(NULL)
{
}
@@ -397,7 +398,8 @@ public:
// construction/destruction
handler_entry_write(UINT8 width, endianness_t endianness, UINT8 **rambaseptr)
- : handler_entry(width, endianness, rambaseptr)
+ : handler_entry(width, endianness, rambaseptr),
+ m_ioport(NULL)
{
}
@@ -4079,7 +4081,8 @@ handler_entry::handler_entry(UINT8 width, endianness_t endianness, UINT8 **ramba
m_byteend(0),
m_bytemask(~0),
m_rambaseptr(rambaseptr),
- m_subunits(0)
+ m_subunits(0),
+ m_invsubmask(0)
{
}