summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/kingdrby.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/kingdrby.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/kingdrby.cpp')
-rw-r--r--src/mame/drivers/kingdrby.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/kingdrby.cpp b/src/mame/drivers/kingdrby.cpp
index 9b509c421d3..2037e57d070 100644
--- a/src/mame/drivers/kingdrby.cpp
+++ b/src/mame/drivers/kingdrby.cpp
@@ -883,12 +883,12 @@ static const gfx_layout cowrace_layout16x16x2 =
16*16
};
-static GFXDECODE_START( kingdrby )
+static GFXDECODE_START( gfx_kingdrby )
GFXDECODE_ENTRY( "gfx1", 0x0000, layout16x16x2, 0x080, 0x10 )
GFXDECODE_ENTRY( "gfx2", 0x0000, layout8x8x2, 0x000, 0x80 )
GFXDECODE_END
-static GFXDECODE_START( cowrace )
+static GFXDECODE_START( gfx_cowrace )
GFXDECODE_ENTRY( "gfx1", 0x000000, cowrace_layout16x16x2, 0x080, 0x10 )
GFXDECODE_ENTRY( "gfx2", 0x000000, layout8x8x2, 0x000, 0x80 )
GFXDECODE_END
@@ -991,7 +991,7 @@ MACHINE_CONFIG_START(kingdrby_state::kingdrby)
MCFG_I8255_IN_PORTC_CB(READ8(*this, kingdrby_state, input_mux_r))
MCFG_I8255_OUT_PORTC_CB(WRITE8(*this, kingdrby_state, outport2_w))
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", kingdrby)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_kingdrby)
MCFG_PALETTE_ADD("palette", 0x200)
MCFG_PALETTE_INIT_OWNER(kingdrby_state,kingdrby)
MCFG_SCREEN_ADD("screen", RASTER)
@@ -1044,7 +1044,7 @@ MACHINE_CONFIG_START(kingdrby_state::cowrace)
MCFG_DEVICE_PROGRAM_MAP(cowrace_sound_map)
MCFG_DEVICE_IO_MAP(cowrace_sound_io)
- MCFG_GFXDECODE_MODIFY("gfxdecode", cowrace)
+ MCFG_GFXDECODE_MODIFY("gfxdecode", gfx_cowrace)
MCFG_PALETTE_MODIFY("palette")
MCFG_PALETTE_INIT_OWNER(kingdrby_state,kingdrby)
MCFG_DEVICE_ADD("oki", OKIM6295, 1056000, okim6295_device::PIN7_HIGH) // clock frequency & pin 7 not verified