diff options
Diffstat (limited to 'src/devices/cpu/mcs96/i8x9x.cpp')
-rw-r--r-- | src/devices/cpu/mcs96/i8x9x.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/devices/cpu/mcs96/i8x9x.cpp b/src/devices/cpu/mcs96/i8x9x.cpp index 1170aa4fa1a..f235cf90c28 100644 --- a/src/devices/cpu/mcs96/i8x9x.cpp +++ b/src/devices/cpu/mcs96/i8x9x.cpp @@ -13,7 +13,8 @@ i8x9x_device::i8x9x_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) : mcs96_device(mconfig, type, name, tag, owner, clock, 8, "i8x9x", __FILE__), - io_config("io", ENDIANNESS_LITTLE, 16, 16, -1) + io_config("io", ENDIANNESS_LITTLE, 16, 16, -1), io(nullptr), base_timer2(0), ad_done(0), hso_command(0), ad_command(0), hso_time(0), ad_result(0), + ios0(0), ios1(0), ioc0(0), ioc1(0), sbuf(0), sp_stat(0), serial_send_buf(0), serial_send_timer(0) { } @@ -24,7 +25,7 @@ offs_t i8x9x_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 *op const address_space_config *i8x9x_device::memory_space_config(address_spacenum spacenum) const { - return spacenum == AS_PROGRAM ? &program_config : spacenum == AS_IO ? &io_config : NULL; + return spacenum == AS_PROGRAM ? &program_config : spacenum == AS_IO ? &io_config : nullptr; } void i8x9x_device::device_start() |