summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/eis_hgb107x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/eis_hgb107x.cpp')
-rw-r--r--src/devices/bus/isa/eis_hgb107x.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/isa/eis_hgb107x.cpp b/src/devices/bus/isa/eis_hgb107x.cpp
index 25b16a38fe3..a42eb4aaddb 100644
--- a/src/devices/bus/isa/eis_hgb107x.cpp
+++ b/src/devices/bus/isa/eis_hgb107x.cpp
@@ -243,13 +243,13 @@ void isa8_epc_mda_device::device_reset()
if (m_installed == false)
{
m_isa->install_device(0x3b0, 0x3bf, read8sm_delegate(*this, FUNC(isa8_epc_mda_device::io_read)), write8sm_delegate(*this, FUNC(isa8_epc_mda_device::io_write)));
- m_isa->install_bank(0xb0000, 0xb7fff, "bank_epc", &m_videoram[0]); // Monochrome emulation mode VRAM address
+ m_isa->install_bank(0xb0000, 0xb7fff, &m_videoram[0]); // Monochrome emulation mode VRAM address
// This check allows a color monitor adapter to be installed at this address range if color emulation is disabled
if (m_color_mode & 1)
{
m_isa->install_device(0x3d0, 0x3df, read8sm_delegate(*this, FUNC(isa8_epc_mda_device::io_read)), write8sm_delegate(*this, FUNC(isa8_epc_mda_device::io_write)));
- m_isa->install_bank(0xb8000, 0xbffff, "bank_epc", &m_videoram[0]); // Color emulation mode VRAM address, but same 32KB areas as there are only this amount on the board
+ m_isa->install_bank(0xb8000, 0xbffff, &m_videoram[0]); // Color emulation mode VRAM address, but same 32KB areas as there are only this amount on the board
}
m_installed = true;
}
@@ -351,13 +351,13 @@ uint8_t isa8_epc_mda_device::io_read(offs_t offset)
return data;
}
-WRITE_LINE_MEMBER( isa8_epc_mda_device::hsync_changed )
+void isa8_epc_mda_device::hsync_changed(int state)
{
m_hsync = state ? 1 : 0;
}
-WRITE_LINE_MEMBER( isa8_epc_mda_device::vsync_changed )
+void isa8_epc_mda_device::vsync_changed(int state)
{
m_vsync = state ? 0x80 : 0;
if ( state )