summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/hp48.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/hp48.cpp')
-rw-r--r--src/mame/machine/hp48.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/hp48.cpp b/src/mame/machine/hp48.cpp
index 6c6ad253001..e9769f159c1 100644
--- a/src/mame/machine/hp48.cpp
+++ b/src/mame/machine/hp48.cpp
@@ -940,7 +940,7 @@ void hp48_port_image_device::hp48_unfill_port()
state->m_modules[m_module].off_mask = 0x00fff; /* 2 KB */
state->m_modules[m_module].read = read8_delegate();
state->m_modules[m_module].write = write8_delegate();
- state->m_modules[m_module].data = NULL;
+ state->m_modules[m_module].data = nullptr;
state->m_modules[m_module].isnop = 1;
state->m_port_size[m_port] = 0;
}
@@ -1035,12 +1035,12 @@ DRIVER_INIT_MEMBER(hp48_state,hp48)
m_modules[i].off_mask = 0x00fff; /* 2 KB */
m_modules[i].read = read8_delegate();
m_modules[i].write = write8_delegate();
- m_modules[i].data = NULL;
+ m_modules[i].data = nullptr;
m_modules[i].isnop = 0;
}
m_port_size[0] = 0;
m_port_size[1] = 0;
- m_rom = NULL;
+ m_rom = nullptr;
}
void hp48_state::machine_reset()