summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/mos7360.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/mos7360.cpp')
-rw-r--r--src/devices/sound/mos7360.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/sound/mos7360.cpp b/src/devices/sound/mos7360.cpp
index fe8631cfee2..1be8535b417 100644
--- a/src/devices/sound/mos7360.cpp
+++ b/src/devices/sound/mos7360.cpp
@@ -177,7 +177,7 @@ const address_space_config *mos7360_device::memory_space_config(address_spacenum
switch (spacenum)
{
case AS_0: return &m_videoram_space_config;
- default: return NULL;
+ default: return nullptr;
}
}
@@ -258,10 +258,10 @@ mos7360_device::mos7360_device(const machine_config &mconfig, const char *tag, d
device_memory_interface(mconfig, *this),
device_sound_interface(mconfig, *this),
device_video_interface(mconfig, *this),
- m_videoram_space_config("videoram", ENDIANNESS_LITTLE, 8, 16, 0, NULL, *ADDRESS_MAP_NAME(mos7360_videoram_map)),
+ m_videoram_space_config("videoram", ENDIANNESS_LITTLE, 8, 16, 0, nullptr, *ADDRESS_MAP_NAME(mos7360_videoram_map)),
m_write_irq(*this),
m_read_k(*this),
- m_stream(NULL)
+ m_stream(nullptr)
{
}
@@ -274,7 +274,7 @@ void mos7360_device::device_start()
{
// get the CPU device
m_cpu = machine().device<cpu_device>(m_cpu_tag);
- assert(m_cpu != NULL);
+ assert(m_cpu != nullptr);
// resolve callbacks
m_write_irq.resolve_safe();