From 47dfd413fc71c17023be5840497517a67c632a04 Mon Sep 17 00:00:00 2001 From: Curt Coder Date: Sun, 28 Oct 2012 19:28:55 +0000 Subject: [PATCH] (MESS) gp32: Added software list for SmartMedia cards, based on the no-intro set. (nw) --- .gitattributes | 1 + hash/gp32.xml | 341 ++++++++++++++++++++++++++++++++++++ src/mess/drivers/gp32.c | 2 + src/mess/machine/smartmed.h | 2 +- 4 files changed, 345 insertions(+), 1 deletion(-) create mode 100644 hash/gp32.xml diff --git a/.gitattributes b/.gitattributes index ab0a6fa939b..b21d17942f0 100644 --- a/.gitattributes +++ b/.gitattributes @@ -78,6 +78,7 @@ hash/gamepock.xml svneol=native#text/xml hash/gba.xml svneol=native#text/xml hash/gbcolor.xml svneol=native#text/xml hash/gmaster.xml svneol=native#text/xml +hash/gp32.xml svneol=native#text/xml hash/gx4000.xml svneol=native#text/xml hash/ibm5140.xml svneol=native#text/xml hash/ibm5150.xml svneol=native#text/xml diff --git a/hash/gp32.xml b/hash/gp32.xml new file mode 100644 index 00000000000..47dee0252fd --- /dev/null +++ b/hash/gp32.xml @@ -0,0 +1,341 @@ + + + + + + Astonishia Story R (Kor) + 2002 + Gamepark + + + + + + + + + + Blue Angelo: Angels from the Shrine (Eur) + 2004 + Shibuya Interactive + + + + + + + + + + Dooly Soccer 2002 (Kor) + 2002 + Gamepark + + + + + + + + + + Dungeon & Guarder: Dragon Gore (Kor) + 2001 + Gamepark + + + + + + + + + + Dungeon & Guarder: Dragon Gore (Eur) + 2001 + Gamepark + + + + + + + + + + Dyhard: With Infinite Stairs (Kor) + 2001 + Gamepark + + + + + + + + + + Dyhard: With Infinite Stairs (Eur) + 2001 + Gamepark + + + + + + + + + + GP Fight (Kor) + 2003 + Gamepark + + + + + + + + + + Hany Party Game (Kor) + 2002 + Gamepark + + + + + + + + + + Her Knights: All for Princess: Deadline (Kor) + 2002 + Gamepark + + + + + + + + + + Her Knights: All for the Princess (Eur) + 2002 + Gamepark + + + + + + + + + + Kimchiman GP32 (Kor) + 2002 + Gamepark + + + + + + + + + + The Little Girl Mill of a Gingko (Kor) + 2003 + Gamepark + + + + + + + + + + Little Wizard (Kor) + 2001 + Gamepark + + + + + + + + + + Little Wizard (Eur) + 2001 + Gamepark + + + + + + + + + + Oneshot Voca (Kor) + 2002 + Gamepark + + + + + + + + + + Princess Maker 2 (Kor) + 2002 + Gamepark + + + + + + + + + + Rally Pop (Kor) + 2001 + Gamepark + + + + + + + + + + Raphael (Kor) + 2002 + Gamepark + + + + + + + + + + Tanggle's Magic Square (Kor) + 2001 + Gamepark + + + + + + + + + + Therapy (Kor) + 2002 + Gamepark + + + + + + + + + + Tomak: Save the Earth, Again (Kor) + 2002 + Gamepark + + + + + + + + + + Tomak: Save the Earth, Again (Eur) (v1.0) + 2002 + Gamepark + + + + + + + + + + Tomak: Save the Earth, Again (Eur) (v2.0) + 2002 + Gamepark + + + + + + + + + + W.B.W.: Wanna Be Wizard! (Kor) + 2004 + Gamepark + + + + + + + + + + Wizard Slayer (Kor) + 2002 + Gamepark + + + + + + + + + + Woody Kunta: Treasure Island (Kor) + 2002 + Gamepark + + + + + + + + + + Woody Kunta: Treasure Island (Eur) + 2002 + Gamepark + + + + + + + + + diff --git a/src/mess/drivers/gp32.c b/src/mess/drivers/gp32.c index a8d22d4f06b..5269779d201 100644 --- a/src/mess/drivers/gp32.c +++ b/src/mess/drivers/gp32.c @@ -1756,6 +1756,8 @@ static MACHINE_CONFIG_START( gp32, gp32_state ) MCFG_NVRAM_ADD_1FILL("nvram") MCFG_SMARTMEDIA_ADD("smartmedia") + + MCFG_SOFTWARE_LIST_ADD("memc_list","gp32") MACHINE_CONFIG_END ROM_START( gp32 ) diff --git a/src/mess/machine/smartmed.h b/src/mess/machine/smartmed.h index c20ca010453..60188cbc7ff 100644 --- a/src/mess/machine/smartmed.h +++ b/src/mess/machine/smartmed.h @@ -155,7 +155,7 @@ public: virtual bool is_creatable() const { return 0; } virtual bool must_be_loaded() const { return 0; } virtual bool is_reset_on_load() const { return 0; } - virtual const char *image_interface() const { return m_image_interface; } + virtual const char *image_interface() const { return "sm_memc"; } virtual const char *file_extensions() const { return "smc"; } virtual const option_guide *create_option_guide() const { return NULL; }