diff options
Diffstat (limited to 'src/mame/drivers/yunsun16.cpp')
-rw-r--r-- | src/mame/drivers/yunsun16.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/yunsun16.cpp b/src/mame/drivers/yunsun16.cpp index c5bad89274d..6f24e273f57 100644 --- a/src/mame/drivers/yunsun16.cpp +++ b/src/mame/drivers/yunsun16.cpp @@ -132,7 +132,6 @@ void yunsun16_state::main_map(address_map &map) map(0x80010c, 0x80010f).ram().share("scrollram_1"); // Scrolling map(0x800114, 0x800117).ram().share("scrollram_0"); // Scrolling map(0x800154, 0x800155).ram().share("priorityram"); // Priority - map(0x800189, 0x800189).rw("oki", FUNC(okim6295_device::read), FUNC(okim6295_device::write)); // Sound map(0x8001fe, 0x8001ff).nopw(); // ? 0 (during int) map(0x900000, 0x903fff).ram().w(m_palette, FUNC(palette_device::write16)).share("palette"); // Palette map(0x908000, 0x90bfff).ram().w(FUNC(yunsun16_state::vram_w<1>)).share("vram_1"); // Layer 1 @@ -151,6 +150,7 @@ void shocking_state::main_map(address_map &map) { yunsun16_state::main_map(map); map(0x800181, 0x800181).w(FUNC(shocking_state::sound_bank_w)); // Sound + map(0x800189, 0x800189).rw("oki", FUNC(okim6295_device::read), FUNC(okim6295_device::write)); // Sound } |