diff options
Diffstat (limited to 'src/mame/drivers/shuuz.cpp')
-rw-r--r-- | src/mame/drivers/shuuz.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/shuuz.cpp b/src/mame/drivers/shuuz.cpp index f54ee95b2c8..358ff950a99 100644 --- a/src/mame/drivers/shuuz.cpp +++ b/src/mame/drivers/shuuz.cpp @@ -26,6 +26,7 @@ #include "machine/eeprompar.h" #include "machine/watchdog.h" #include "sound/okim6295.h" +#include "emupal.h" #include "speaker.h" @@ -121,7 +122,7 @@ void shuuz_state::main_map(address_map &map) map(0x105002, 0x105003).portr("BUTTONS"); map(0x106001, 0x106001).rw("oki", FUNC(okim6295_device::read), FUNC(okim6295_device::write)); map(0x107000, 0x107007).noprw(); - map(0x3e0000, 0x3e07ff).ram().w(m_palette, FUNC(palette_device::write16)).share("palette"); + map(0x3e0000, 0x3e07ff).ram().w("palette", FUNC(palette_device::write16)).share("palette"); map(0x3effc0, 0x3effff).rw(m_vad, FUNC(atari_vad_device::control_read), FUNC(atari_vad_device::control_write)); map(0x3f4000, 0x3f5eff).ram().w(m_vad, FUNC(atari_vad_device::playfield_latched_msb_w)).share("vad:playfield"); map(0x3f5f00, 0x3f5f7f).ram().share("vad:eof"); |