diff options
Diffstat (limited to 'src/devices/cpu/i4004/i4004.cpp')
-rw-r--r-- | src/devices/cpu/i4004/i4004.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/devices/cpu/i4004/i4004.cpp b/src/devices/cpu/i4004/i4004.cpp index 4d81145da31..51258268e8a 100644 --- a/src/devices/cpu/i4004/i4004.cpp +++ b/src/devices/cpu/i4004/i4004.cpp @@ -28,7 +28,7 @@ i4004_cpu_device::i4004_cpu_device(const machine_config &mconfig, const char *ta : cpu_device(mconfig, I4004, "Intel I4004", tag, owner, clock, "i4004", __FILE__) , m_program_config("program", ENDIANNESS_LITTLE, 8, 12, 0) , m_io_config("io", ENDIANNESS_LITTLE, 8, 6, 0) - , m_data_config("data", ENDIANNESS_LITTLE, 8, 12, 0) + , m_data_config("data", ENDIANNESS_LITTLE, 8, 12, 0), m_A(0), m_C(0), m_TEST(0), m_flags(0), m_program(nullptr), m_direct(nullptr), m_data(nullptr), m_io(nullptr), m_icount(0), m_pc_pos(0), m_addr_mask(0) { m_is_octal = true; } @@ -525,4 +525,3 @@ offs_t i4004_cpu_device::disasm_disassemble(char *buffer, offs_t pc, const UINT8 extern CPU_DISASSEMBLE( i4004 ); return CPU_DISASSEMBLE_NAME(i4004)(this, buffer, pc, oprom, opram, options); } - |