mirror of
https://github.com/holub/mame
synced 2025-04-30 11:50:30 +03:00
fixed usage of uninitialized members in hcd62121_cpu_device (nw)
This commit is contained in:
parent
471e7a9fe5
commit
40e727c2d8
@ -31,6 +31,14 @@ hcd62121_cpu_device::hcd62121_cpu_device(const machine_config &mconfig, const ch
|
||||
: cpu_device(mconfig, HCD62121, "Hitachi HCD62121", tag, owner, clock, "hcd62121", __FILE__)
|
||||
, m_program_config("program", ENDIANNESS_BIG, 8, 24, 0)
|
||||
, m_io_config("io", ENDIANNESS_BIG, 8, 8, 0)
|
||||
, m_sp(0)
|
||||
, m_ip(0)
|
||||
, m_dsize(0)
|
||||
, m_cseg(0)
|
||||
, m_dseg(0)
|
||||
, m_sseg(0)
|
||||
, m_f(0)
|
||||
, m_lar(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user