mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +03:00
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:
parent
edd20eaf70
commit
9f4ef58eed
@ -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)
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user