summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/deshoros.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/deshoros.cpp')
-rw-r--r--src/mame/drivers/deshoros.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/deshoros.cpp b/src/mame/drivers/deshoros.cpp
index c0998fc0feb..2cc994363e6 100644
--- a/src/mame/drivers/deshoros.cpp
+++ b/src/mame/drivers/deshoros.cpp
@@ -174,16 +174,16 @@ void destiny_state::main_map(address_map &map)
{
map(0x0000, 0x5fff).bankr("bank1");
map(0x8000, 0x87ff).ram();
- map(0x9000, 0x9000).rw(this, FUNC(destiny_state::printer_status_r), FUNC(destiny_state::firq_ack_w));
- map(0x9001, 0x9001).portr("SYSTEM").w(this, FUNC(destiny_state::nmi_ack_w));
- map(0x9002, 0x9002).rw(this, FUNC(destiny_state::display_ready_r), FUNC(destiny_state::display_w));
+ map(0x9000, 0x9000).rw(FUNC(destiny_state::printer_status_r), FUNC(destiny_state::firq_ack_w));
+ map(0x9001, 0x9001).portr("SYSTEM").w(FUNC(destiny_state::nmi_ack_w));
+ map(0x9002, 0x9002).rw(FUNC(destiny_state::display_ready_r), FUNC(destiny_state::display_w));
map(0x9003, 0x9003).portr("KEY1");
map(0x9004, 0x9004).portr("KEY2");
- map(0x9005, 0x9005).portr("DIPSW").w(this, FUNC(destiny_state::out_w));
+ map(0x9005, 0x9005).portr("DIPSW").w(FUNC(destiny_state::out_w));
// AM_RANGE(0x9006, 0x9006) AM_NOP // printer motor on
// AM_RANGE(0x9007, 0x9007) AM_NOP // printer data
- map(0x900a, 0x900b).w(this, FUNC(destiny_state::sound_w));
- map(0x900c, 0x900c).w(this, FUNC(destiny_state::bank_select_w));
+ map(0x900a, 0x900b).w(FUNC(destiny_state::sound_w));
+ map(0x900c, 0x900c).w(FUNC(destiny_state::bank_select_w));
// AM_RANGE(0x900d, 0x900d) AM_NOP // printer motor off
// AM_RANGE(0x900e, 0x900e) AM_NOP // printer motor jam reset
map(0xc000, 0xffff).rom();