diff options
Diffstat (limited to 'src/devices/cpu/z8000/z8000.cpp')
-rw-r--r-- | src/devices/cpu/z8000/z8000.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/cpu/z8000/z8000.cpp b/src/devices/cpu/z8000/z8000.cpp index 76ff93c76b8..9cd356225d6 100644 --- a/src/devices/cpu/z8000/z8000.cpp +++ b/src/devices/cpu/z8000/z8000.cpp @@ -37,8 +37,8 @@ z8002_device::z8002_device(const machine_config &mconfig, const char *tag, devic : cpu_device(mconfig, Z8002, "Z8002", tag, owner, clock, "z8002", __FILE__) , m_program_config("program", ENDIANNESS_BIG, 16, 16, 0) , m_io_config("io", ENDIANNESS_BIG, 8, 16, 0) - , m_mo_out(*this) - , m_vector_mult(1) + , m_mo_out(*this), m_ppc(0), m_pc(0), m_psapseg(0), m_psapoff(0), m_fcw(0), m_refresh(0), m_nspseg(0), m_nspoff(0), m_irq_req(0), m_irq_vec(0), m_op_valid(0), m_nmi_state(0), m_mi(0), m_program(nullptr), m_data(nullptr), m_direct(nullptr), m_io(nullptr), m_icount(0) + , m_vector_mult(1) { } @@ -47,7 +47,7 @@ z8002_device::z8002_device(const machine_config &mconfig, device_type type, cons : cpu_device(mconfig, type, name, tag, owner, clock, shortname, source) , m_program_config("program", ENDIANNESS_BIG, 16, 20, 0) , m_io_config("io", ENDIANNESS_BIG, 16, 16, 0) - , m_mo_out(*this) + , m_mo_out(*this), m_ppc(0), m_pc(0), m_psapseg(0), m_psapoff(0), m_fcw(0), m_refresh(0), m_nspseg(0), m_nspoff(0), m_irq_req(0), m_irq_vec(0), m_op_valid(0), m_nmi_state(0), m_mi(0), m_program(nullptr), m_data(nullptr), m_direct(nullptr), m_io(nullptr), m_icount(0) , m_vector_mult(2) { } @@ -68,7 +68,7 @@ offs_t z8002_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *op /* opcode execution table */ -Z8000_exec *z8000_exec = NULL; +Z8000_exec *z8000_exec = nullptr; /* zero, sign and parity flags for logical byte operations */ static UINT8 z8000_zsp[256]; @@ -658,7 +658,7 @@ void z8001_device::device_start() m_io = &space(AS_IO); /* already initialized? */ - if(z8000_exec == NULL) + if(z8000_exec == nullptr) z8000_init_tables(); if (machine().debug_flags & DEBUG_FLAG_ENABLED) @@ -688,7 +688,7 @@ void z8002_device::device_start() m_io = &space(AS_IO); /* already initialized? */ - if(z8000_exec == NULL) + if(z8000_exec == nullptr) z8000_init_tables(); z8k_segm = false; |