summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/okean240.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/okean240.cpp')
-rw-r--r--src/mame/drivers/okean240.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/okean240.cpp b/src/mame/drivers/okean240.cpp
index 8ff0410f0c0..819c2ba58d6 100644
--- a/src/mame/drivers/okean240.cpp
+++ b/src/mame/drivers/okean240.cpp
@@ -235,9 +235,9 @@ void okean240_state::okean240_io(address_map &map)
map(0x40, 0x43).rw("ppikbd", FUNC(i8255_device::read), FUNC(i8255_device::write));
map(0x60, 0x63).rw("pit", FUNC(pit8253_device::read), FUNC(pit8253_device::write));
map(0x80, 0x81).rw("pic", FUNC(pic8259_device::read), FUNC(pic8259_device::write));
- map(0x80, 0x80).r(this, FUNC(okean240_state::okean240_kbd_status_r));
- map(0xa0, 0xa0).r(this, FUNC(okean240_state::term_r));
- map(0xa1, 0xa1).r(this, FUNC(okean240_state::term_status_r));
+ map(0x80, 0x80).r(FUNC(okean240_state::okean240_kbd_status_r));
+ map(0xa0, 0xa0).r(FUNC(okean240_state::term_r));
+ map(0xa1, 0xa1).r(FUNC(okean240_state::term_status_r));
map(0xc0, 0xc3).rw("ppic", FUNC(i8255_device::read), FUNC(i8255_device::write));
map(0xe0, 0xe3).rw("ppie", FUNC(i8255_device::read), FUNC(i8255_device::write));
}
@@ -248,7 +248,7 @@ void okean240_state::okean240a_io(address_map &map)
map(0x40, 0x43).rw("ppikbd", FUNC(i8255_device::read), FUNC(i8255_device::write));
map(0x60, 0x63).rw("pit", FUNC(pit8253_device::read), FUNC(pit8253_device::write));
map(0x80, 0x81).rw("pic", FUNC(pic8259_device::read), FUNC(pic8259_device::write));
- map(0x80, 0x80).r(this, FUNC(okean240_state::okean240a_kbd_status_r));
+ map(0x80, 0x80).r(FUNC(okean240_state::okean240a_kbd_status_r));
map(0xa0, 0xa0).rw("uart", FUNC(i8251_device::data_r), FUNC(i8251_device::data_w));
map(0xa1, 0xa1).rw("uart", FUNC(i8251_device::status_r), FUNC(i8251_device::control_w));
map(0xc0, 0xc3).rw("ppic", FUNC(i8255_device::read), FUNC(i8255_device::write));
@@ -272,7 +272,7 @@ void okean240_state::okean240t_io(address_map &map)
map(0x40, 0x43).rw("ppikbd", FUNC(i8255_device::read), FUNC(i8255_device::write));
map(0x60, 0x63).rw("pit", FUNC(pit8253_device::read), FUNC(pit8253_device::write));
map(0x80, 0x81).rw("pic", FUNC(pic8259_device::read), FUNC(pic8259_device::write));
- map(0x80, 0x80).r(this, FUNC(okean240_state::okean240_kbd_status_r));
+ map(0x80, 0x80).r(FUNC(okean240_state::okean240_kbd_status_r));
map(0xa0, 0xa0).rw("uart", FUNC(i8251_device::data_r), FUNC(i8251_device::data_w));
map(0xa1, 0xa1).rw("uart", FUNC(i8251_device::status_r), FUNC(i8251_device::control_w));
map(0xc0, 0xc3).rw("ppic", FUNC(i8255_device::read), FUNC(i8255_device::write));