mirror of
https://github.com/holub/mame
synced 2025-10-08 17:37:56 +03:00
fixed usage of uninitialized members in apexc_cpu_device (nw)
This commit is contained in:
parent
5956d10911
commit
06ef44f862
@ -339,6 +339,14 @@ apexc_cpu_device::apexc_cpu_device(const machine_config &mconfig, const char *ta
|
|||||||
: cpu_device(mconfig, APEXC, "APEXC", tag, owner, clock, "apexc_cpu", __FILE__)
|
: cpu_device(mconfig, APEXC, "APEXC", tag, owner, clock, "apexc_cpu", __FILE__)
|
||||||
, m_program_config("program", ENDIANNESS_BIG, 32, 15, 0)
|
, m_program_config("program", ENDIANNESS_BIG, 32, 15, 0)
|
||||||
, m_io_config("io", ENDIANNESS_BIG, 8, 1, 0)
|
, m_io_config("io", ENDIANNESS_BIG, 8, 1, 0)
|
||||||
|
, m_a(0)
|
||||||
|
, m_r(0)
|
||||||
|
, m_cr(0)
|
||||||
|
, m_ml(0)
|
||||||
|
, m_working_store(1)
|
||||||
|
, m_running(0)
|
||||||
|
, m_pc(0)
|
||||||
|
, m_ml_full(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user