summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/altos2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/altos2.cpp')
-rw-r--r--src/mame/drivers/altos2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/altos2.cpp b/src/mame/drivers/altos2.cpp
index bd3063f343f..99c7fb8c693 100644
--- a/src/mame/drivers/altos2.cpp
+++ b/src/mame/drivers/altos2.cpp
@@ -85,7 +85,7 @@ void altos2_state::io_map(address_map &map)
map(0x00, 0x03).rw("dart1", FUNC(z80dart_device::ba_cd_r), FUNC(z80dart_device::ba_cd_w));
map(0x04, 0x07).rw("dart2", FUNC(z80dart_device::ba_cd_r), FUNC(z80dart_device::ba_cd_w));
map(0x08, 0x0b).rw("ctc", FUNC(z80ctc_device::read), FUNC(z80ctc_device::write));
- map(0x0c, 0x0c).w(this, FUNC(altos2_state::video_mode_w));
+ map(0x0c, 0x0c).w(FUNC(altos2_state::video_mode_w));
map(0x40, 0x7f).rw(m_novram, FUNC(x2210_device::read), FUNC(x2210_device::write));
//AM_RANGE(0x80, 0xff) AM_DEVREADWRITE_MOD("vpac", crt9007_device, read, write, rshift<1>)
}