diff options
Diffstat (limited to 'src/devices/machine/68340.cpp')
-rw-r--r-- | src/devices/machine/68340.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/machine/68340.cpp b/src/devices/machine/68340.cpp index 752a7be4592..b9ddd9c4b16 100644 --- a/src/devices/machine/68340.cpp +++ b/src/devices/machine/68340.cpp @@ -112,10 +112,10 @@ ADDRESS_MAP_END m68340cpu_device::m68340cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : fscpu32_device(mconfig, "MC68340", tag, owner, clock, M68340, 32,32, ADDRESS_MAP_NAME(m68340_internal_map), "mc68340", __FILE__) { - m68340SIM = 0; - m68340DMA = 0; - m68340SERIAL = 0; - m68340TIMER = 0; + m68340SIM = nullptr; + m68340DMA = nullptr; + m68340SERIAL = nullptr; + m68340TIMER = nullptr; m68340_base = 0; } |