summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vegaeo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vegaeo.cpp')
-rw-r--r--src/mame/drivers/vegaeo.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/vegaeo.cpp b/src/mame/drivers/vegaeo.cpp
index 9a99410c2bf..74e5821fa88 100644
--- a/src/mame/drivers/vegaeo.cpp
+++ b/src/mame/drivers/vegaeo.cpp
@@ -105,13 +105,13 @@ READ32_MEMBER(vegaeo_state::vegaeo_custom_read)
void vegaeo_state::vega_map(address_map &map)
{
map(0x00000000, 0x001fffff).ram();
- map(0x80000000, 0x80013fff).rw(this, FUNC(vegaeo_state::vram_r), FUNC(vegaeo_state::vram_w));
+ map(0x80000000, 0x80013fff).rw(FUNC(vegaeo_state::vram_r), FUNC(vegaeo_state::vram_w));
map(0xfc000000, 0xfc0000ff).rw("at28c16", FUNC(at28c16_device::read), FUNC(at28c16_device::write)).umask32(0x000000ff);
map(0xfc200000, 0xfc2003ff).rw("palette", FUNC(palette_device::read16), FUNC(palette_device::write16)).umask32(0x0000ffff).share("palette");
map(0xfc400000, 0xfc40005b).nopw(); // crt registers ?
map(0xfc600000, 0xfc600003).w(m_soundlatch, FUNC(generic_latch_8_device::write)).umask32(0x000000ff).cswidth(32);
- map(0xfca00000, 0xfca00003).w(this, FUNC(vegaeo_state::vega_misc_w));
- map(0xfcc00000, 0xfcc00003).r(this, FUNC(vegaeo_state::vegaeo_custom_read));
+ map(0xfca00000, 0xfca00003).w(FUNC(vegaeo_state::vega_misc_w));
+ map(0xfcc00000, 0xfcc00003).r(FUNC(vegaeo_state::vegaeo_custom_read));
map(0xfce00000, 0xfce00003).portr("P1_P2");
map(0xfd000000, 0xfeffffff).rom().region("maindata", 0);
map(0xfff80000, 0xffffffff).rom().region("maincpu", 0);