summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2009-06-07 17:28:40 +0000
committer Angelo Salese <angelosa@users.noreply.github.com>2009-06-07 17:28:40 +0000
commit79261b7225c34ff7bef89f3082dfae4603361459 (patch)
tree7574a8f4b6988e46b11a68fc19dd7c9a2be099f8
parentd32e3916d387bd2c410a6dca86026d545f132d4f (diff)
New games marked as GAME_NOT_WORKING
------------------------------------ Janputer [alien_mame, Dumping Union] =================================================================== A missing rom prevents this to work, it'll hopefully be dumped...
-rw-r--r--src/mame/drivers/royalmah.c13
-rw-r--r--src/mame/mamedriv.c1
2 files changed, 14 insertions, 0 deletions
diff --git a/src/mame/drivers/royalmah.c b/src/mame/drivers/royalmah.c
index 859592a23d1..d453e4b6884 100644
--- a/src/mame/drivers/royalmah.c
+++ b/src/mame/drivers/royalmah.c
@@ -3384,6 +3384,18 @@ ROM_START( openmj )
ROM_LOAD( "82s123.prm", 0x00, 0x20, CRC(d3007282) SHA1(e4d863ab193e49208ed0f59dcddb1da0492314f6) )
ROM_END
+ROM_START( janputer )
+ ROM_REGION( 0x10000, "maincpu", ROMREGION_ERASEFF )
+ ROM_LOAD( "1.bin", 0x0000, 0x2000, CRC(f36f4222) SHA1(ce18c273a59f86cb17ea6ba8a3daefc3d750df1e) )
+ ROM_LOAD( "2.bin", 0x2000, 0x2000, CRC(7d57cb48) SHA1(38b97c5d02e3ab6187e5e0f86c06b8a3747b51a8) )
+ ROM_LOAD( "3.bin", 0x4000, 0x2000, CRC(fb481d9a) SHA1(122e2b0d11fe1fe8cf219da9c8f96fe5a1016bb6) )
+ ROM_LOAD( "7.bin", 0x6000, 0x1000, NO_DUMP ) // reads from here for the gfx data.
+
+ ROM_REGION( 0x20, "proms", 0 )
+ /* taken from Royal Mahjong, might or might not be the same. */
+ ROM_LOAD( "82s123.prm", 0x00, 0x20, BAD_DUMP CRC(d3007282) SHA1(e4d863ab193e49208ed0f59dcddb1da0492314f6) )
+ROM_END
+
/***************************************************************************
Janyou Part II
(c)1984 Cosmo Denshi
@@ -4611,6 +4623,7 @@ GAME( 1981, royalmj, 0, royalmah, royalmah, 0, ROT0, "Nichibut
GAME( 1981?, openmj, royalmj, royalmah, royalmah, 0, ROT0, "Sapporo Mechanic", "Open Mahjong [BET] (Japan)", 0 )
GAME( 1982, royalmah, royalmj, royalmah, royalmah, 0, ROT0, "bootleg", "Royal Mahjong (Falcon bootleg, v1.01)", 0 )
GAME( 1983, janyoup2, royalmj, ippatsu, janyoup2, 0, ROT0, "Cosmo Denshi", "Janyou Part II (ver 7.03, July 1 1983)",0 )
+GAME( 1981, janputer, 0, royalmah, royalmah, 0, ROT0, "Taito Corporation", "Janputer (Japan)", 0 )
GAME( 1984, janoh, 0, royalmah, royalmah, 0, ROT0, "Toaplan", "Jan Oh (set 1)", GAME_NOT_WORKING )
GAME( 1984, janoha, janoh, janoh, royalmah, 0, ROT0, "Toaplan", "Jan Oh (set 2)", GAME_NOT_WORKING ) // this one is complete?
GAME( 1985, jansou, 0, jansou, jansou, 0, ROT180, "Dyna", "Jansou (set 1)", GAME_NOT_WORKING|GAME_NO_SOUND )
diff --git a/src/mame/mamedriv.c b/src/mame/mamedriv.c
index c45817c76f1..3b7c2c29cb6 100644
--- a/src/mame/mamedriv.c
+++ b/src/mame/mamedriv.c
@@ -7825,6 +7825,7 @@ Other Sun games
DRIVER( openmj ) /* (c) 1982 Nichibutsu */
DRIVER( royalmah ) /* Falcon bootleg */
DRIVER( janyoup2 ) /* Falcon bootleg */
+ DRIVER( janputer ) /* (c) 1982 Taito */
DRIVER( janoh ) /* (c) 1984 Toaplan */
DRIVER( janoha ) /* (c) 1984 Toaplan */
DRIVER( jansou ) /* (c) 1985 Dyna */