diff options
Diffstat (limited to 'src/devices/cpu/arc/arc.cpp')
-rw-r--r-- | src/devices/cpu/arc/arc.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/cpu/arc/arc.cpp b/src/devices/cpu/arc/arc.cpp index 2fe40ae9bd6..e38d853f9be 100644 --- a/src/devices/cpu/arc/arc.cpp +++ b/src/devices/cpu/arc/arc.cpp @@ -19,7 +19,8 @@ const device_type ARC = &device_creator<arc_device>; arc_device::arc_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : cpu_device(mconfig, ARC, "ARCtangent A4", tag, owner, clock, "arc", __FILE__) - , m_program_config("program", ENDIANNESS_BIG, 32, 24, 0) // some docs describe these as 'middle endian'?! + , m_program_config("program", ENDIANNESS_BIG, 32, 24, 0), m_pc(0), m_program(nullptr), m_icount(0), m_debugger_temp(0) +// some docs describe these as 'middle endian'?! { } |