summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/etc
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/etc
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/etc')
-rw-r--r--src/mame/etc/korgm1.cpp4
-rw-r--r--src/mame/etc/template_driver.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/etc/korgm1.cpp b/src/mame/etc/korgm1.cpp
index 2b14e5ffc23..b116030ebaf 100644
--- a/src/mame/etc/korgm1.cpp
+++ b/src/mame/etc/korgm1.cpp
@@ -148,7 +148,7 @@ static const gfx_layout charlayout =
};
#endif
-static GFXDECODE_START( korgm1 )
+static GFXDECODE_START( gfx_korgm1 )
// GFXDECODE_ENTRY( "gfx1", 0, charlayout, 0, 1 )
GFXDECODE_END
@@ -184,7 +184,7 @@ MACHINE_CONFIG_START(korgm1_state::korgm1)
MCFG_SCREEN_SIZE(32*8, 32*8)
MCFG_SCREEN_VISIBLE_AREA(0*8, 32*8-1, 0*8, 32*8-1)
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", korgm1)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_korgm1)
MCFG_PALETTE_ADD("palette", 8)
diff --git a/src/mame/etc/template_driver.cpp b/src/mame/etc/template_driver.cpp
index 8478ab06b01..f2a1dbb2f23 100644
--- a/src/mame/etc/template_driver.cpp
+++ b/src/mame/etc/template_driver.cpp
@@ -129,7 +129,7 @@ static const gfx_layout charlayout =
8*8
};
-static GFXDECODE_START( xxx )
+static GFXDECODE_START( gfx_xxx )
GFXDECODE_ENTRY( "gfx1", 0, charlayout, 0, 1 )
GFXDECODE_END
@@ -165,7 +165,7 @@ MACHINE_CONFIG_START(xxx_state::xxx)
//MCFG_SCREEN_RAW_PARAMS(XTAL(12'000'000)/2, 384, 0, 256, 264, 16, 240) /* generic NTSC video timing at 256x224 */
MCFG_SCREEN_PALETTE("palette")
- MCFG_GFXDECODE_ADD("gfxdecode", "palette", xxx)
+ MCFG_DEVICE_ADD("gfxdecode", GFXDECODE, "palette", gfx_xxx)
MCFG_PALETTE_ADD("palette", 8)
MCFG_PALETTE_INIT_OWNER(xxx_state, xxx)