summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/megadriv_acbl.h
diff options
context:
space:
mode:
author David Haywood <28625134+DavidHaywood@users.noreply.github.com>2020-10-29 13:53:03 +0000
committer GitHub <noreply@github.com>2020-10-30 00:53:03 +1100
commit2137f269814897db440bd9b14c6643cd59cd2e89 (patch)
treeb78c728ecc2ff901689820b5e95dcb4ad6adab56 /src/mame/includes/megadriv_acbl.h
parent5f0507bed4677685cec435a4b3dbb826034415c0 (diff)
-Plug and Play work (lots of new sets from Sean etc.) (#7401)
new WORKING machines ----- The New York Times Sudoku [David Haywood, Sean Riddle, Kamaal Brown] Vs Maxx 25-in-1 (VT03 hardware) [David Haywood, Sean Riddle, Kamaal Brown] 6-in-1 Sudoku Plug & Play [David Haywood, Sean Riddle] Plug 'N' Play 50-in-1 (DGUN-853) [David Haywood, Sean Riddle, Kamaal Brown] new WORKING clones ----- Mega Drive Collection Volume 2 (Radica, Arcade Legends) (UK) [David Haywood, Sean Riddle] Super Sonic Gold (Radica Plug & Play) (UK) [David Haywood, Sean Riddle] new NOT WORKING machines ----- Plug 'N' Play 25-in-1 (DGUN-806) [David Haywood, Sean Riddle, Kamaal Brown] IQuest (US) [David Haywood, Sean Riddle, Kamaal Brown] - Added MegaDrive side ROM to sarc110 sets, moved to skeleton 'hybrid' driver based on megadriv_rad.cpp and demoted to not working for now as they're meant to boot from the MD side with the VT03 games as bonus items [Sean Riddle, Team Europe] - Moved reactmd to a skeleton 'hybrid' driver, demoted to not working, it's also meant to boot from the MD side with the SunPlus games as bonus items.
Diffstat (limited to 'src/mame/includes/megadriv_acbl.h')
-rw-r--r--src/mame/includes/megadriv_acbl.h19
1 files changed, 15 insertions, 4 deletions
diff --git a/src/mame/includes/megadriv_acbl.h b/src/mame/includes/megadriv_acbl.h
index 990e49e4989..011758a563f 100644
--- a/src/mame/includes/megadriv_acbl.h
+++ b/src/mame/includes/megadriv_acbl.h
@@ -11,7 +11,6 @@ public:
: md_base_state(mconfig, type, tag) { m_protcount = 0;}
void megadrvb(machine_config &config);
- void megadrvb_6b(machine_config &config);
void md_bootleg(machine_config &config);
void puckpkmn(machine_config &config);
void jzth(machine_config &config);
@@ -47,9 +46,6 @@ private:
uint16_t puckpkmna_70001c_r();
uint16_t puckpkmna_4b2476_r();
- DECLARE_MACHINE_START(md_bootleg) { MACHINE_START_CALL_MEMBER(megadriv); m_vdp->stop_timers(); }
- DECLARE_MACHINE_START(md_6button);
-
void jzth_map(address_map &map);
void md_bootleg_map(address_map &map);
void puckpkmn_map(address_map &map);
@@ -61,4 +57,19 @@ private:
int m_protcount;
};
+class md_boot_6button_state : public md_boot_state
+{
+public:
+ md_boot_6button_state(const machine_config& mconfig, device_type type, const char* tag)
+ : md_boot_state(mconfig, type, tag)
+ {
+ }
+
+ void megadrvb_6b(machine_config &config);
+
+protected:
+ virtual void machine_start() override;
+
+};
+
#endif // MAME_INCLUDES_MEGADRIV_ACBL_H