summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/m6502/deco16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/m6502/deco16.cpp')
-rw-r--r--src/devices/cpu/m6502/deco16.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/cpu/m6502/deco16.cpp b/src/devices/cpu/m6502/deco16.cpp
index a85804dc124..b0651e97171 100644
--- a/src/devices/cpu/m6502/deco16.cpp
+++ b/src/devices/cpu/m6502/deco16.cpp
@@ -16,8 +16,8 @@
const device_type DECO16 = &device_creator<deco16_device>;
deco16_device::deco16_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) :
- m6502_device(mconfig, DECO16, "DECO16", tag, owner, clock, "deco16", __FILE__),
- io(NULL),
+ m6502_device(mconfig, DECO16, "DECO16", tag, owner, clock, "deco16", __FILE__),
+ io(nullptr),
io_config("io", ENDIANNESS_LITTLE, 8, 16)
{
}
@@ -46,8 +46,8 @@ const address_space_config *deco16_device::memory_space_config(address_spacenum
{
case AS_PROGRAM: return &program_config;
case AS_IO: return &io_config;
- case AS_DECRYPTED_OPCODES: return has_configured_map(AS_DECRYPTED_OPCODES) ? &sprogram_config : NULL;
- default: return NULL;
+ case AS_DECRYPTED_OPCODES: return has_configured_map(AS_DECRYPTED_OPCODES) ? &sprogram_config : nullptr;
+ default: return nullptr;
}
}