summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/prestige.cpp
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/drivers/prestige.cpp
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/drivers/prestige.cpp')
-rw-r--r--src/mame/drivers/prestige.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/src/mame/drivers/prestige.cpp b/src/mame/drivers/prestige.cpp
index 30a314424c8..af14c935c8f 100644
--- a/src/mame/drivers/prestige.cpp
+++ b/src/mame/drivers/prestige.cpp
@@ -940,34 +940,34 @@ ROM_END
/* Driver */
-// YEAR NAME PARENT COMPAT MACHINE INPUT STATE INIT COMPANY FULLNAME FLAGS
-COMP( 1994, glcolor, 0, 0, glcolor, glcolor, prestige_state, 0, "VTech", "Genius Leader Color (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
-COMP( 1994, glscolor, glcolor, 0, glcolor, glcolor, prestige_state, 0, "VTech", "Genius Leader Super Color (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
-COMP( 1995, snotec, 0, 0, snotec, glcolor, prestige_state, 0, "Bandai", "Super Note Club (Japan)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
-COMP( 1996, snotecex, 0, 0, snotec, glcolor, prestige_state, 0, "Bandai", "Super Note Club EX (Japan)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
-COMP( 1996, glmcolor, 0, 0, glmcolor, glmcolor, prestige_state, 0, "VTech", "Genius Leader Magic Color (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
-COMP( 1997, gl6000sl, 0, 0, gl6000sl, prestige, prestige_state, 0, "VTech", "Genius Leader 6000SL (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
-COMP( 1998, snotecu, 0, 0, snotec, glcolor, prestige_state, 0, "Bandai", "Super Note Club \xce\xbc (Japan)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
-COMP( 1998, gl7007sl, 0, 0, gl7007sl, prestige, prestige_state, 0, "VTech", "Genius Leader 7007SL (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
-COMP( 1998, prestige, 0, 0, prestige, prestige, prestige_state, 0, "VTech", "PreComputer Prestige Elite", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
-COMP( 1999, gwnf, 0, 0, prestige, prestige, prestige_state, 0, "VTech", "Genius Winner Notebook Fun (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+// YEAR NAME PARENT COMPAT MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS
+COMP( 1994, glcolor, 0, 0, glcolor, glcolor, prestige_state, empty_init, "VTech", "Genius Leader Color (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+COMP( 1994, glscolor, glcolor, 0, glcolor, glcolor, prestige_state, empty_init, "VTech", "Genius Leader Super Color (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+COMP( 1995, snotec, 0, 0, snotec, glcolor, prestige_state, empty_init, "Bandai", "Super Note Club (Japan)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+COMP( 1996, snotecex, 0, 0, snotec, glcolor, prestige_state, empty_init, "Bandai", "Super Note Club EX (Japan)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+COMP( 1996, glmcolor, 0, 0, glmcolor, glmcolor, prestige_state, empty_init, "VTech", "Genius Leader Magic Color (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+COMP( 1997, gl6000sl, 0, 0, gl6000sl, prestige, prestige_state, empty_init, "VTech", "Genius Leader 6000SL (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+COMP( 1998, snotecu, 0, 0, snotec, glcolor, prestige_state, empty_init, "Bandai", "Super Note Club \xce\xbc (Japan)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+COMP( 1998, gl7007sl, 0, 0, gl7007sl, prestige, prestige_state, empty_init, "VTech", "Genius Leader 7007SL (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+COMP( 1998, prestige, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "PreComputer Prestige Elite", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
+COMP( 1999, gwnf, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Winner Notebook Fun (Germany)", MACHINE_NOT_WORKING | MACHINE_NO_SOUND )
// these systems need to be moved into a separate driver
-COMP( 1996, gj4000, 0, 0, prestige, prestige, prestige_state, 0, "VTech", "Genius Junior 4000 (Germany)", MACHINE_IS_SKELETON )
-COMP( 1996, gkidabc, 0, 0, prestige, prestige, prestige_state, 0, "VTech", "Genius KID ABC Fan (Germany)", MACHINE_IS_SKELETON )
-COMP( 1993, gjmovie, 0, 0, gjmovie, prestige, prestige_state, 0, "VTech", "Genius Junior Movie (Germany)", MACHINE_IS_SKELETON )
-COMP( 1996, gjrstar, 0, 0, prestige, prestige, prestige_state, 0, "VTech", "Genius Junior Redstar(Germany)", MACHINE_IS_SKELETON )
-COMP( 1996, gjrstar2, gjrstar, 0, prestige, prestige, prestige_state, 0, "VTech", "Genius Junior Redstar 2 (Germany)", MACHINE_IS_SKELETON )
-COMP( 1998, gjrstar3, 0, 0, prestige, prestige, prestige_state, 0, "VTech", "Genius Junior Redstar 3 (Germany)", MACHINE_IS_SKELETON )
-COMP( 1998, gj5000, 0, 0, prestige, prestige, prestige_state, 0, "VTech", "Genius Junior 5000 (Germany)", MACHINE_IS_SKELETON )
-COMP( 2012, cars2lap, 0, 0, prestige, prestige, prestige_state, 0, "VTech", "CARS 2 Laptop (Germany)", MACHINE_IS_SKELETON )
+COMP( 1996, gj4000, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Junior 4000 (Germany)", MACHINE_IS_SKELETON )
+COMP( 1996, gkidabc, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius KID ABC Fan (Germany)", MACHINE_IS_SKELETON )
+COMP( 1993, gjmovie, 0, 0, gjmovie, prestige, prestige_state, empty_init, "VTech", "Genius Junior Movie (Germany)", MACHINE_IS_SKELETON )
+COMP( 1996, gjrstar, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Junior Redstar(Germany)", MACHINE_IS_SKELETON )
+COMP( 1996, gjrstar2, gjrstar, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Junior Redstar 2 (Germany)", MACHINE_IS_SKELETON )
+COMP( 1998, gjrstar3, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Junior Redstar 3 (Germany)", MACHINE_IS_SKELETON )
+COMP( 1998, gj5000, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Junior 5000 (Germany)", MACHINE_IS_SKELETON )
+COMP( 2012, cars2lap, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "CARS 2 Laptop (Germany)", MACHINE_IS_SKELETON )
// gl6600cx use a NSC1028 system-on-a-chip designed by National Semiconductor specifically for VTech
// http://web.archive.org/web/19991127134657/http://www.national.com/news/item/0,1735,425,00.html
-COMP( 1999, gl6600cx, 0, 0, prestige, prestige, prestige_state, 0, "VTech", "Genius Leader 6600CX (Germany)", MACHINE_IS_SKELETON )
+COMP( 1999, gl6600cx, 0, 0, prestige, prestige, prestige_state, empty_init, "VTech", "Genius Leader 6600CX (Germany)", MACHINE_IS_SKELETON )
// TODO: move into a separate driver
// Prin-C use a Fujitsu MB90611A MCU (F2MC-16L)
-COMP( ????, princ, 0, 0, princ, prestige, prestige_state, 0, "Tomy", "Prin-C", MACHINE_IS_SKELETON )
+COMP( ????, princ, 0, 0, princ, prestige, prestige_state, empty_init, "Tomy", "Prin-C", MACHINE_IS_SKELETON )