summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes
diff options
context:
space:
mode:
author David Haywood <28625134+DavidHaywood@users.noreply.github.com>2021-02-25 04:10:46 +0000
committer GitHub <noreply@github.com>2021-02-25 15:10:46 +1100
commit86c5beb9d9b7f5f28f01f07b37db84cee394db1f (patch)
treeef6e3e947bc63c889727517779733ee350005d43 /src/mame/includes
parent589a0006792dfd95c19d64e853e6a6b1b8cbad97 (diff)
new WORKING machines (Dora TV Explorer Phone plug+play) + some leapfrog softlists + ekara carts (#7816)
new WORKING machines ------- Dora the Explorer - Dora TV Explorer Phone / Boots's Special Day [Sean Riddle, David Haywood, Kamaal Brown] Namco Classics Vol.1 (3-in-1) (MSI Plug & Play) [Sean Riddle] new NOT WORKING software list additions --------- leapfrog_zippity_cart.xml: The World of Cars - Driven to Learn (500-13589-B) (UK) [David Haywood, TeamEurope] Disney Princess - Magical Movement & Learning (500-13590-A) (UK) [David Haywood, TeamEurope] leapfrog_didj_cart.xml: Super Chicks (USA) [TeamEurope] new software list additions --------- ekara_japan_s.xml: Hello Kitty Special (Japan) (SC0001-KTY) [TeamEurope] ekara_japan_sp.xml: SP-05 Super Cartridge - SP-05 Super Cartridge - TV POP Junior with Chibi Marukochan & Anpanman (Japan) [TeamEurope] ekara_japan_gk.xml: GK-2 - Disney Princess: Princess Debut (Japan) [TeamEurope] GK-3 - Disney Tinkerbell to Tinkle Star Uranai (Japan) [TeamEurope]
Diffstat (limited to 'src/mame/includes')
-rw-r--r--src/mame/includes/spg2xx.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/mame/includes/spg2xx.h b/src/mame/includes/spg2xx.h
index 22ad763c53a..4b43955bac2 100644
--- a/src/mame/includes/spg2xx.h
+++ b/src/mame/includes/spg2xx.h
@@ -335,6 +335,26 @@ private:
required_ioport m_io_p1_extra;
};
+class spg2xx_game_doraphone_state : public spg2xx_game_state
+{
+public:
+ spg2xx_game_doraphone_state(const machine_config &mconfig, device_type type, const char *tag) :
+ spg2xx_game_state(mconfig, type, tag),
+ m_portb_data(0),
+ m_io_p1_rows(*this, "P1_ROW%u", 1U)
+ { }
+
+ void doraphone(machine_config &config);
+
+private:
+ uint16_t porta_r(offs_t offset, uint16_t mem_mask = ~0);
+
+ void portb_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0) override;
+ uint16_t m_portb_data;
+
+ required_ioport_array<6> m_io_p1_rows;
+};
+
#endif // MAME_INCLUDES_SPG2XX_H