devices/machine/6850acia.cpp, device/machine/upd4992.cpp, mame/video/jangou_blitter.cpp: fixed initializations issues that were causing problems in devnoclear debug builds (nw)

This commit is contained in:
Ivan Vangelista 2020-07-03 21:42:08 +02:00
parent edd20eaf70
commit 9f4ef58eed
3 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,7 @@
// copyright-holders:smf
/*********************************************************************
6850acia.c
6850acia.cpp
6850 ACIA code
@ -92,6 +92,7 @@ acia6850_device::acia6850_device(const machine_config &mconfig, device_type type
, m_irq(0)
, m_txc(0)
, m_txd(0)
, m_tx_state(0)
, m_tx_counter(0)
, m_tx_irq_enable(false)
, m_rxc(0)

View File

@ -38,6 +38,7 @@ upd4992_device::upd4992_device(const machine_config &mconfig, const char *tag, d
, device_rtc_interface(mconfig, *this)
, m_timer_clock(nullptr)
{
std::fill(std::begin(m_rtc_regs), std::end(m_rtc_regs), 0);
}

View File

@ -94,6 +94,7 @@ void jangou_blitter_device::device_reset()
{
memset(m_pen_data, 0, ARRAY_LENGTH(m_pen_data));
m_bltflip = false;
m_src_addr = 0;
}