klax.cpp: make the bootlegs boot, still stop working after a while (nw)

This commit is contained in:
Ivan Vangelista 2018-11-21 20:32:39 +01:00
parent 165e1c74f8
commit 3ce64b47e4

View File

@ -104,9 +104,9 @@ void klax_state::klax2bl_map(address_map &map)
map(0x1f0000, 0x1fffff).w("eeprom", FUNC(eeprom_parallel_28xx_device::unlock_write16));
map(0x260000, 0x260001).portr("P1").w(FUNC(klax_state::klax_latch_w));
map(0x260002, 0x260003).portr("P2");
map(0x260006, 0x260007).w(FUNC(klax_state::interrupt_ack_w));
// AM_RANGE(0x270000, 0x270001) AM_DEVREADWRITE8("oki", okim6295_device, read, write, 0x00ff) // no OKI here
map(0x2e0000, 0x2e0001).w("watchdog", FUNC(watchdog_timer_device::reset16_w));
map(0x360000, 0x360001).w(FUNC(klax_state::interrupt_ack_w));
map(0x3e0000, 0x3e07ff).rw(m_palette, FUNC(palette_device::read8), FUNC(palette_device::write8)).umask16(0xff00).share("palette");
map(0x3f0000, 0x3f0f7f).ram().w(m_playfield_tilemap, FUNC(tilemap_device::write16)).share("playfield");
map(0x3f0f80, 0x3f0fff).ram().share("mob:slip");