acorn_vidc.cpp: initialize some stuff (nw)

This commit is contained in:
Ivan Vangelista 2019-11-26 10:27:43 +01:00 committed by GitHub
parent aa6c62b2b0
commit 4457c9e682
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,17 @@ acorn_vidc10_device::acorn_vidc10_device(const machine_config &mconfig, device_t
, m_dac(*this, "dac%u", 0)
, m_vblank_cb(*this)
, m_sound_drq_cb(*this)
, m_pixel_clock(0)
, m_bpp_mode(0)
, m_crtc_interlace(0)
, m_cursor_enable(0)
, m_sound_frequency_latch(0)
, m_sound_frequency_test_bit(0)
, m_sound_mode(0)
{
std::fill(std::begin(m_crtc_regs), std::end(m_crtc_regs), 0);
std::fill(std::begin(m_stereo_image), std::end(m_stereo_image), 0);
}
acorn_vidc10_device::acorn_vidc10_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock)