summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/cloud9.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/cloud9.cpp')
-rw-r--r--src/mame/drivers/cloud9.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/drivers/cloud9.cpp b/src/mame/drivers/cloud9.cpp
index 0cc979e0227..a69700dafe4 100644
--- a/src/mame/drivers/cloud9.cpp
+++ b/src/mame/drivers/cloud9.cpp
@@ -266,20 +266,20 @@ WRITE8_MEMBER(cloud9_state::nvram_store_w)
void cloud9_state::cloud9_map(address_map &map)
{
- map(0x0000, 0x4fff).bankr("bank1").w(this, FUNC(cloud9_state::cloud9_videoram_w));
- map(0x0000, 0x0001).w(this, FUNC(cloud9_state::cloud9_bitmode_addr_w));
- map(0x0002, 0x0002).rw(this, FUNC(cloud9_state::cloud9_bitmode_r), FUNC(cloud9_state::cloud9_bitmode_w));
+ map(0x0000, 0x4fff).bankr("bank1").w(FUNC(cloud9_state::cloud9_videoram_w));
+ map(0x0000, 0x0001).w(FUNC(cloud9_state::cloud9_bitmode_addr_w));
+ map(0x0002, 0x0002).rw(FUNC(cloud9_state::cloud9_bitmode_r), FUNC(cloud9_state::cloud9_bitmode_w));
map(0x5000, 0x53ff).ram().share("spriteram");
map(0x5400, 0x547f).w("watchdog", FUNC(watchdog_timer_device::reset_w));
- map(0x5480, 0x54ff).w(this, FUNC(cloud9_state::irq_ack_w));
- map(0x5500, 0x557f).ram().w(this, FUNC(cloud9_state::cloud9_paletteram_w)).share("paletteram");
+ map(0x5480, 0x54ff).w(FUNC(cloud9_state::irq_ack_w));
+ map(0x5500, 0x557f).ram().w(FUNC(cloud9_state::cloud9_paletteram_w)).share("paletteram");
map(0x5580, 0x5587).mirror(0x0078).w(m_videolatch, FUNC(ls259_device::write_d7)); // video control registers
map(0x5600, 0x5607).mirror(0x0078).w("outlatch", FUNC(ls259_device::write_d7));
- map(0x5680, 0x56ff).w(this, FUNC(cloud9_state::nvram_store_w));
- map(0x5700, 0x577f).w(this, FUNC(cloud9_state::nvram_recall_w));
+ map(0x5680, 0x56ff).w(FUNC(cloud9_state::nvram_store_w));
+ map(0x5700, 0x577f).w(FUNC(cloud9_state::nvram_recall_w));
map(0x5800, 0x5800).mirror(0x007e).portr("IN0");
map(0x5801, 0x5801).mirror(0x007e).portr("IN1");
- map(0x5900, 0x5903).mirror(0x007c).r(this, FUNC(cloud9_state::leta_r));
+ map(0x5900, 0x5903).mirror(0x007c).r(FUNC(cloud9_state::leta_r));
map(0x5a00, 0x5a0f).mirror(0x00f0).rw("pokey1", FUNC(pokey_device::read), FUNC(pokey_device::write));
map(0x5b00, 0x5b0f).mirror(0x00f0).rw("pokey2", FUNC(pokey_device::read), FUNC(pokey_device::write));
map(0x5c00, 0x5cff).mirror(0x0300).rw(m_nvram, FUNC(x2212_device::read), FUNC(x2212_device::write));