summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/jalmah.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/jalmah.cpp')
-rw-r--r--src/mame/drivers/jalmah.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/drivers/jalmah.cpp b/src/mame/drivers/jalmah.cpp
index d5257c102ec..0f3fa0372e6 100644
--- a/src/mame/drivers/jalmah.cpp
+++ b/src/mame/drivers/jalmah.cpp
@@ -1093,10 +1093,10 @@ MACHINE_CONFIG_START(jalmah_state::jalmah)
//M50747 MCU
- MCFG_MEGASYS1_TILEMAP_ADD("scroll0", "palette", 0x0000)
- MCFG_MEGASYS1_TILEMAP_ADD("scroll1", "palette", 0x0100)
- MCFG_MEGASYS1_TILEMAP_ADD("scroll2", "palette", 0x0200)
- MCFG_MEGASYS1_TILEMAP_ADD("scroll3", "palette", 0x0300)
+ MEGASYS1_TILEMAP(config, m_tmap[0], m_palette, 0x0000);
+ MEGASYS1_TILEMAP(config, m_tmap[1], m_palette, 0x0100);
+ MEGASYS1_TILEMAP(config, m_tmap[2], m_palette, 0x0200);
+ MEGASYS1_TILEMAP(config, m_tmap[3], m_palette, 0x0300);
MCFG_SCREEN_ADD("screen", RASTER)
MCFG_SCREEN_RAW_PARAMS(12000000/2,406,0,256,263,16,240) // assume same as nmk16 & mega system 1
@@ -1160,10 +1160,10 @@ MACHINE_CONFIG_START(urashima_state::urashima)
// Urashima seems to use an earlier version of the Jaleco tilemaps (without range etc.)
// and with per-scanline video registers
- MCFG_DEVICE_REMOVE("scroll0")
- MCFG_DEVICE_REMOVE("scroll1")
- MCFG_DEVICE_REMOVE("scroll2")
- MCFG_DEVICE_REMOVE("scroll3")
+ config.device_remove("scroll0");
+ config.device_remove("scroll1");
+ config.device_remove("scroll2");
+ config.device_remove("scroll3");
MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_urashima)