diff options
author | 2020-10-14 23:08:52 -0400 | |
---|---|---|
committer | 2020-10-14 23:08:52 -0400 | |
commit | f129f25e43f429a1480760700c527716314b2215 (patch) | |
tree | 96e06739602c7688804c59c560e33d588377b236 /src/devices/cpu/clipper/clipper.cpp | |
parent | 10ca7281f6437503cad7bb8bb314c600b7171a83 (diff) |
clipper, cammu: Initialize more members
Diffstat (limited to 'src/devices/cpu/clipper/clipper.cpp')
-rw-r--r-- | src/devices/cpu/clipper/clipper.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/devices/cpu/clipper/clipper.cpp b/src/devices/cpu/clipper/clipper.cpp index 6b2704b5150..cf9903e6ec8 100644 --- a/src/devices/cpu/clipper/clipper.cpp +++ b/src/devices/cpu/clipper/clipper.cpp @@ -68,6 +68,7 @@ clipper_c300_device::clipper_c300_device(const machine_config &mconfig, const ch clipper_c400_device::clipper_c400_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) : clipper_device(mconfig, CLIPPER_C400, tag, owner, clock, ENDIANNESS_LITTLE, SSW_ID_C4R4) + , m_db_pc(0) , m_cammu(*this, "^cammu") { } @@ -81,6 +82,12 @@ clipper_device::clipper_device(const machine_config &mconfig, device_type type, , m_psw(endianness == ENDIANNESS_BIG ? PSW_BIG : 0) , m_ssw(cpuid) , m_r(m_rs) + , m_ru{0} + , m_rs{0} + , m_f{0} + , m_fp_pc(0) + , m_fp_dst(0) + , m_info{0} { } |