summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/goldstar.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/goldstar.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/goldstar.h')
-rw-r--r--src/mame/includes/goldstar.h72
1 files changed, 36 insertions, 36 deletions
diff --git a/src/mame/includes/goldstar.h b/src/mame/includes/goldstar.h
index b3b473bf026..f7780fe120a 100644
--- a/src/mame/includes/goldstar.h
+++ b/src/mame/includes/goldstar.h
@@ -40,10 +40,10 @@ public:
DECLARE_WRITE8_MEMBER(goldstar_fa00_w);
DECLARE_WRITE8_MEMBER(ay8910_outputa_w);
DECLARE_WRITE8_MEMBER(ay8910_outputb_w);
- DECLARE_DRIVER_INIT(goldstar);
- DECLARE_DRIVER_INIT(cmast91);
- DECLARE_DRIVER_INIT(wcherry);
- DECLARE_DRIVER_INIT(super9);
+ void init_goldstar();
+ void init_cmast91();
+ void init_wcherry();
+ void init_super9();
DECLARE_VIDEO_START(goldstar);
DECLARE_PALETTE_INIT(cm);
DECLARE_VIDEO_START(cherrym);
@@ -133,26 +133,26 @@ public:
DECLARE_WRITE8_MEMBER(girl_scroll_w);
DECLARE_WRITE8_MEMBER(background_col_w);
- DECLARE_DRIVER_INIT(cm);
- DECLARE_DRIVER_INIT(cmv4);
- DECLARE_DRIVER_INIT(tonypok);
- DECLARE_DRIVER_INIT(schery97);
- DECLARE_DRIVER_INIT(schery97a);
- DECLARE_DRIVER_INIT(skill98);
- DECLARE_DRIVER_INIT(po33);
- DECLARE_DRIVER_INIT(match133);
- DECLARE_DRIVER_INIT(nfb96_dk);
- DECLARE_DRIVER_INIT(nfb96_c2);
- DECLARE_DRIVER_INIT(nfb96_d);
- DECLARE_DRIVER_INIT(nfb96_c1);
- DECLARE_DRIVER_INIT(nfb96sea);
- DECLARE_DRIVER_INIT(fb2010);
- DECLARE_DRIVER_INIT(rp35);
- DECLARE_DRIVER_INIT(rp36);
- DECLARE_DRIVER_INIT(rp36c3);
- DECLARE_DRIVER_INIT(rp96sub);
- DECLARE_DRIVER_INIT(tcl);
- DECLARE_DRIVER_INIT(super7);
+ void init_cm();
+ void init_cmv4();
+ void init_tonypok();
+ void init_schery97();
+ void init_schery97a();
+ void init_skill98();
+ void init_po33();
+ void init_match133();
+ void init_nfb96_dk();
+ void init_nfb96_c2();
+ void init_nfb96_d();
+ void init_nfb96_c1();
+ void init_nfb96sea();
+ void init_fb2010();
+ void init_rp35();
+ void init_rp36();
+ void init_rp36c3();
+ void init_rp96sub();
+ void init_tcl();
+ void init_super7();
uint32_t screen_update_amcoe1a(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
@@ -205,10 +205,10 @@ public:
DECLARE_WRITE8_MEMBER(system_outputb_w);
DECLARE_WRITE8_MEMBER(system_outputc_w);
- DECLARE_DRIVER_INIT(lucky8a);
- DECLARE_DRIVER_INIT(magoddsc);
- DECLARE_DRIVER_INIT(flaming7);
- DECLARE_DRIVER_INIT(flam7_tw);
+ void init_lucky8a();
+ void init_magoddsc();
+ void init_flaming7();
+ void init_flam7_tw();
DECLARE_VIDEO_START(bingowng);
DECLARE_VIDEO_START(magical);
@@ -250,11 +250,11 @@ public:
{
}
- DECLARE_DRIVER_INIT(cb3);
- DECLARE_DRIVER_INIT(cb3e);
- DECLARE_DRIVER_INIT(cherrys);
- DECLARE_DRIVER_INIT(chrygld);
- DECLARE_DRIVER_INIT(chry10);
+ void init_cb3();
+ void init_cb3e();
+ void init_cherrys();
+ void init_chrygld();
+ void init_chry10();
void cherrys(machine_config &config);
void chrygld(machine_config &config);
@@ -336,9 +336,9 @@ public:
DECLARE_WRITE8_MEMBER(reel2_attrram_w);
DECLARE_WRITE8_MEMBER(reel3_attrram_w);
- DECLARE_DRIVER_INIT(unkch1);
- DECLARE_DRIVER_INIT(unkch3);
- DECLARE_DRIVER_INIT(unkch4);
+ void init_unkch1();
+ void init_unkch3();
+ void init_unkch4();
DECLARE_VIDEO_START(unkch);
uint32_t screen_update_unkch(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);