diff options
Diffstat (limited to 'src/devices/cpu/ie15/ie15.cpp')
-rw-r--r-- | src/devices/cpu/ie15/ie15.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/cpu/ie15/ie15.cpp b/src/devices/cpu/ie15/ie15.cpp index cae9bc8db1d..95851497236 100644 --- a/src/devices/cpu/ie15/ie15.cpp +++ b/src/devices/cpu/ie15/ie15.cpp @@ -31,9 +31,9 @@ const device_type IE15 = &device_creator<ie15_device>; ie15_device::ie15_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : cpu_device(mconfig, IE15, "ie15", tag, owner, clock, "ie15_cpu", __FILE__), m_program_config("program", ENDIANNESS_LITTLE, 8, 14), - m_io_config("io", ENDIANNESS_LITTLE, 8, 8), - m_program(0), - m_direct(0) + m_io_config("io", ENDIANNESS_LITTLE, 8, 8), m_A(0), m_CF(0), m_ZF(0), m_RF(0), m_flags(0), + m_program(nullptr), m_io(nullptr), + m_direct(nullptr) { // set our instruction counter m_icountptr = &m_icount; @@ -91,7 +91,7 @@ const address_space_config *ie15_device::memory_space_config(address_spacenum sp { return (spacenum == AS_PROGRAM) ? &m_program_config : (spacenum == AS_IO) ? &m_io_config : - NULL; + nullptr; } //------------------------------------------------- @@ -174,7 +174,7 @@ UINT32 ie15_device::disasm_max_opcode_bytes() const offs_t ie15_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options) { extern CPU_DISASSEMBLE( ie15 ); - return CPU_DISASSEMBLE_NAME(ie15)(NULL, buffer, pc, oprom, opram, 0); + return CPU_DISASSEMBLE_NAME(ie15)(nullptr, buffer, pc, oprom, opram, 0); } //************************************************************************** |