summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/aga.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/aga.cpp')
-rw-r--r--src/devices/bus/isa/aga.cpp20
1 files changed, 12 insertions, 8 deletions
diff --git a/src/devices/bus/isa/aga.cpp b/src/devices/bus/isa/aga.cpp
index 1d321533391..bd8af6b9200 100644
--- a/src/devices/bus/isa/aga.cpp
+++ b/src/devices/bus/isa/aga.cpp
@@ -62,15 +62,19 @@ isa8_aga_device::isa8_aga_device(const machine_config &mconfig, const char *tag,
m_palette(*this, "palette"),
m_mc6845(*this, AGA_MC6845_NAME),
m_cga_config(*this, "cga_config"),
- m_update_row_type(-1),
+ m_update_row_type(-1),
+ m_mode(),
m_mda_mode_control(0),
- m_mda_status(0),
+ m_mda_status(0),
+ m_mda_chr_gen(nullptr),
m_cga_mode_control(0),
m_cga_color_select(0),
- m_cga_status(0),
+ m_cga_status(0),
+ m_cga_chr_gen(nullptr),
m_framecnt(0),
m_vsync(0),
- m_hsync(0)
+ m_hsync(0),
+ m_videoram(nullptr)
{
}
@@ -80,15 +84,15 @@ isa8_aga_device::isa8_aga_device(const machine_config &mconfig, device_type type
m_palette(*this, "palette"),
m_mc6845(*this, AGA_MC6845_NAME),
m_cga_config(*this, "cga_config"),
- m_update_row_type(-1),
+ m_update_row_type(-1), m_mode(),
m_mda_mode_control(0),
- m_mda_status(0),
+ m_mda_status(0), m_mda_chr_gen(nullptr),
m_cga_mode_control(0),
m_cga_color_select(0),
- m_cga_status(0),
+ m_cga_status(0), m_cga_chr_gen(nullptr),
m_framecnt(0),
m_vsync(0),
- m_hsync(0)
+ m_hsync(0), m_videoram(nullptr)
{
}
//-------------------------------------------------