diff options
Diffstat (limited to 'src/mame/drivers/atarig1.cpp')
-rw-r--r-- | src/mame/drivers/atarig1.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/atarig1.cpp b/src/mame/drivers/atarig1.cpp index 1954f8f11b0..6934ab3593a 100644 --- a/src/mame/drivers/atarig1.cpp +++ b/src/mame/drivers/atarig1.cpp @@ -24,6 +24,7 @@ #include "includes/atarig1.h" #include "machine/eeprompar.h" #include "machine/watchdog.h" +#include "emupal.h" #include "speaker.h" @@ -191,7 +192,7 @@ void atarig1_state::main_map(address_map &map) map(0xfd0000, 0xfd0000).r(m_jsa, FUNC(atari_jsa_ii_device::main_response_r)); map(0xfd8000, 0xfdffff).rw("eeprom", FUNC(eeprom_parallel_28xx_device::read), FUNC(eeprom_parallel_28xx_device::write)).umask16(0x00ff); /* AM_RANGE(0xfe0000, 0xfe7fff) AM_READ(from_r)*/ - map(0xfe8000, 0xfe89ff).ram().w(m_palette, FUNC(palette_device::write16)).share("palette"); + map(0xfe8000, 0xfe89ff).ram().w("palette", FUNC(palette_device::write16)).share("palette"); map(0xff0000, 0xffffff).ram(); map(0xff0000, 0xff0fff).ram().share("rle"); map(0xff2000, 0xff2001).w(FUNC(atarig1_state::mo_command_w)).share("mo_command"); |