mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
fixed uninitialized variables in src/emu/cpu/hd61700/hd61700.c (nw)
This commit is contained in:
parent
a4a12cf51b
commit
03352a5630
@ -101,7 +101,11 @@ const device_type HD61700 = &device_creator<hd61700_cpu_device>;
|
||||
|
||||
hd61700_cpu_device::hd61700_cpu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: cpu_device(mconfig, HD61700, "HD61700", tag, owner, clock),
|
||||
m_program_config("program", ENDIANNESS_BIG, 16, 18, -1)
|
||||
m_program_config("program", ENDIANNESS_BIG, 16, 18, -1),
|
||||
m_ppc(0x0000),
|
||||
m_curpc(0x0000),
|
||||
m_pc(0),
|
||||
m_flags(0)
|
||||
{
|
||||
// ...
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user