mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
acorn_vidc.cpp: initialize some stuff (nw)
This commit is contained in:
parent
aa6c62b2b0
commit
4457c9e682
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user