diff options
| author | 2015-12-04 07:02:45 +0100 | |
|---|---|---|
| committer | 2015-12-04 07:02:45 +0100 | |
| commit | 0c56ac848dd0eba359500d444ecbb51f215ff5b9 (patch) | |
| tree | ad3444449470cec94ccaffd174c5a4d1bc90d1e1 /src/devices/machine/68340.cpp | |
| parent | 68f961927a156c47cb444c1f66258a89342d0205 (diff) | |
clang-modernize part 3
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; } |
