summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/vt82c496.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/vt82c496.cpp')
-rw-r--r--src/devices/machine/vt82c496.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/machine/vt82c496.cpp b/src/devices/machine/vt82c496.cpp
index 0a05d9cf17a..8f24e2338fd 100644
--- a/src/devices/machine/vt82c496.cpp
+++ b/src/devices/machine/vt82c496.cpp
@@ -16,15 +16,15 @@ const device_type VT82C496 = &device_creator<vt82c496_device>;
vt82c496_device::vt82c496_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
- : device_t(mconfig, VT82C496, "VIA VT82C496G system chipset", tag, owner, clock, "vt82c496", __FILE__)
-{
+ : device_t(mconfig, VT82C496, "VIA VT82C496G system chipset", tag, owner, clock, "vt82c496", __FILE__), m_cpu_tag(nullptr), m_region_tag(nullptr), m_space(nullptr), m_ram(nullptr), m_rom(nullptr), m_reg_select(0)
+ {
}
void vt82c496_device::device_start()
{
/* get address space we are working on */
device_t *cpu = machine().device(m_cpu_tag);
- assert(cpu != NULL);
+ assert(cpu != nullptr);
m_space = &cpu->memory().space(AS_PROGRAM);