summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/segas16b.h
diff options
context:
space:
mode:
author MooglyGuy <MooglyGuy@users.noreply.github.com>2018-05-13 15:22:22 +0200
committer Olivier Galibert <galibert@pobox.com>2018-05-13 22:22:22 +0900
commit5cc2319a2e286735981cb62781e65169ff936a52 (patch)
tree9465116c1856e052635215df0b98e400cc8bd020 /src/mame/includes/segas16b.h
parent49803e7418beefbd912d0090884063422888891d (diff)
Removed DRIVER_INIT-related macros, made driver init entry in GAME/COMP/CONS explicit. (#3565)
* -Removed DRIVER_INIT macros in favor of explicitly-named member functions, nw * -Removed DRIVER_INIT_related macros. Made init_ prefix on driver initializers explicit. Renamed init_0 to empty_init. Fixed up GAME/COMP/CONS macro spacing. [Ryan Holtz] * Missed some files, nw * Fix compile, (nw)
Diffstat (limited to 'src/mame/includes/segas16b.h')
-rw-r--r--src/mame/includes/segas16b.h64
1 files changed, 32 insertions, 32 deletions
diff --git a/src/mame/includes/segas16b.h b/src/mame/includes/segas16b.h
index 2ed06b63988..2f27137784a 100644
--- a/src/mame/includes/segas16b.h
+++ b/src/mame/includes/segas16b.h
@@ -94,39 +94,39 @@ public:
DECLARE_WRITE8_MEMBER(spin_68k_w);
// ROM board-specific driver init
- DECLARE_DRIVER_INIT(generic_5521);
- DECLARE_DRIVER_INIT(generic_5358);
- DECLARE_DRIVER_INIT(generic_5704);
- DECLARE_DRIVER_INIT(generic_5358_small);
- DECLARE_DRIVER_INIT(generic_5797);
- DECLARE_DRIVER_INIT(generic_korean);
- DECLARE_DRIVER_INIT(generic_bootleg);
- DECLARE_DRIVER_INIT(lockonph);
+ void init_generic_5521();
+ void init_generic_5358();
+ void init_generic_5704();
+ void init_generic_5358_small();
+ void init_generic_5797();
+ void init_generic_korean();
+ void init_generic_bootleg();
+ void init_lockonph();
// game-specific driver init
- DECLARE_DRIVER_INIT(isgsm);
- DECLARE_DRIVER_INIT(tturf_5704);
- DECLARE_DRIVER_INIT(wb3_5704);
- DECLARE_DRIVER_INIT(hwchamp_5521);
- DECLARE_DRIVER_INIT(altbeas5_5521);
- DECLARE_DRIVER_INIT(sdi_5358_small);
- DECLARE_DRIVER_INIT(fpointbla);
- DECLARE_DRIVER_INIT(altbeasj_5521);
- DECLARE_DRIVER_INIT(ddux_5704);
- DECLARE_DRIVER_INIT(snapper);
- DECLARE_DRIVER_INIT(shinobi4_5521);
- DECLARE_DRIVER_INIT(defense_5358_small);
- DECLARE_DRIVER_INIT(sjryuko_5358_small);
- DECLARE_DRIVER_INIT(exctleag_5358);
- DECLARE_DRIVER_INIT(tetrbx);
- DECLARE_DRIVER_INIT(aceattac_5358);
- DECLARE_DRIVER_INIT(passshtj_5358);
- DECLARE_DRIVER_INIT(cencourt_5358);
- DECLARE_DRIVER_INIT(shinfz);
- DECLARE_DRIVER_INIT(dunkshot_5358_small);
- DECLARE_DRIVER_INIT(timescan_5358_small);
- DECLARE_DRIVER_INIT(shinobi3_5358);
- DECLARE_DRIVER_INIT(altbeas4_5521);
- DECLARE_DRIVER_INIT(aliensyn7_5358_small);
+ void init_isgsm();
+ void init_tturf_5704();
+ void init_wb3_5704();
+ void init_hwchamp_5521();
+ void init_altbeas5_5521();
+ void init_sdi_5358_small();
+ void init_fpointbla();
+ void init_altbeasj_5521();
+ void init_ddux_5704();
+ void init_snapper();
+ void init_shinobi4_5521();
+ void init_defense_5358_small();
+ void init_sjryuko_5358_small();
+ void init_exctleag_5358();
+ void init_tetrbx();
+ void init_aceattac_5358();
+ void init_passshtj_5358();
+ void init_cencourt_5358();
+ void init_shinfz();
+ void init_dunkshot_5358_small();
+ void init_timescan_5358_small();
+ void init_shinobi3_5358();
+ void init_altbeas4_5521();
+ void init_aliensyn7_5358_small();
// video updates
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);