mirror of
https://github.com/holub/mame
synced 2025-04-24 17:30:55 +03:00
fixed uninitialized members in src/emu/cpu/tms9900/tms9995.c (nw)
This commit is contained in:
parent
528c308397
commit
523413c4a5
@ -124,6 +124,8 @@ enum
|
||||
|
||||
tms9995_device::tms9995_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
|
||||
: cpu_device(mconfig, TMS9995, "TMS9995", tag, owner, clock),
|
||||
m_state_any(0),
|
||||
PC_debug(0),
|
||||
m_program_config("program", ENDIANNESS_BIG, 8, 16),
|
||||
m_io_config("cru", ENDIANNESS_BIG, 8, 16),
|
||||
m_prgspace(NULL),
|
||||
@ -1476,11 +1478,18 @@ void tms9995_device::service_interrupt()
|
||||
m_hold_state = false;
|
||||
m_wait_state = false;
|
||||
m_lowbyte = false;
|
||||
m_check_hold = false;
|
||||
m_word_access = false;
|
||||
m_int4_active = false;
|
||||
|
||||
m_pass = 0;
|
||||
m_instindex = 0;
|
||||
m_instruction = &m_decoded[m_instindex];
|
||||
|
||||
memset(m_flag, 0, sizeof(m_flag));
|
||||
|
||||
ST = 0;
|
||||
|
||||
// The auto-wait state generation is turned on when the READY line is cleared
|
||||
// on RESET.
|
||||
m_auto_wait_state = !m_ready_state;
|
||||
|
Loading…
Reference in New Issue
Block a user