summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/machine/acorn_vidc.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/devices/machine/acorn_vidc.cpp b/src/devices/machine/acorn_vidc.cpp
index 358b49dff4c..101c8ad2b4f 100644
--- a/src/devices/machine/acorn_vidc.cpp
+++ b/src/devices/machine/acorn_vidc.cpp
@@ -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)