summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/kingobox.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-05-15 05:43:28 +1000
committer Vas Crabb <vas@vastheman.com>2018-05-15 05:43:28 +1000
commit23325728009b85bad264dcc175c8f1b8c5e51678 (patch)
tree47e270288dae6d6e6f2cce33c779e94ffc2d39ab /src/mame/drivers/kingobox.cpp
parentd1f8569f4d2729631ef5c3fd6de4e3cfca9856e8 (diff)
More cleanup/streamlining of machine configuration and macros:
* Get rid of implicit prefix for GFX decode names and prefix them all * Get rid of special macro for adding GFXDECODE in favour of constructor * Make empty GFX decode a static member of interface * Allow palette to be specified to GFXDECODE as a device finder * Removed diserial.h from emu.h as it's used relatively infrequently Also fix darkseal and vaportra propely. The palette device automatically attaches itself to a share with matching tag. The correct solution here is to rename one or the other out of the way, since it was never attached to a share before.
Diffstat (limited to 'src/mame/drivers/kingobox.cpp')
-rw-r--r--src/mame/drivers/kingobox.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/kingobox.cpp b/src/mame/drivers/kingobox.cpp
index c73098b924a..00941770e84 100644
--- a/src/mame/drivers/kingobox.cpp
+++ b/src/mame/drivers/kingobox.cpp
@@ -374,7 +374,7 @@ static const gfx_layout tilelayout =
16*8
};
-static GFXDECODE_START( kingobox )
+static GFXDECODE_START( gfx_kingobox )
GFXDECODE_ENTRY( "gfx1", 0x00000, charlayout, 256, 8 ) /* characters */
GFXDECODE_ENTRY( "gfx1", 0x01000, charlayout, 256, 8 ) /* characters */
GFXDECODE_ENTRY( "gfx2", 0x00000, spritelayout, 0, 32 ) /* sprites */
@@ -444,7 +444,7 @@ static const gfx_layout rk_bglayout =
};
-static GFXDECODE_START( rk )
+static GFXDECODE_START( gfx_rk )
GFXDECODE_ENTRY( "gfx1", 0x00000, rk_charlayout1, 256, 8 ) /* characters */
GFXDECODE_ENTRY( "gfx1", 0x00000, rk_charlayout2, 256, 8 ) /* characters */
GFXDECODE_ENTRY( "gfx2", 0x00000, rk_spritelayout, 0, 32 ) /* sprites */
@@ -499,7 +499,7 @@ MACHINE_CONFIG_START(kingofb_state::kingofb)
MCFG_SCREEN_PALETTE("palette")
MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE("nmigate", input_merger_device, in_w<0>))
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", kingobox)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_kingobox)
MCFG_PALETTE_ADD("palette", 256+8*2)
MCFG_PALETTE_INDIRECT_ENTRIES(256+8)
MCFG_PALETTE_INIT_OWNER(kingofb_state,kingofb)
@@ -558,7 +558,7 @@ MACHINE_CONFIG_START(kingofb_state::ringking)
MCFG_SCREEN_PALETTE("palette")
MCFG_SCREEN_VBLANK_CALLBACK(WRITELINE("nmigate", input_merger_device, in_w<0>))
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", rk)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_rk)
MCFG_PALETTE_ADD("palette", 256+8*2)
MCFG_PALETTE_INDIRECT_ENTRIES(256+8)
MCFG_PALETTE_INIT_OWNER(kingofb_state,ringking)