From b735e9882b7c73f4b465138d094ffa0b8e4d55fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Banaan=20Ananas?= Date: Fri, 22 Nov 2013 20:04:12 +0000 Subject: [PATCH] placeholder --- .gitattributes | 1 + src/mame/drivers/8080bw.c | 3 ++- src/mame/drivers/sshot.c | 5 ++++- src/mame/layout/gunchamp.lay | 18 ++++++++++++++++++ src/mame/mame.mak | 3 +++ 5 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 src/mame/layout/gunchamp.lay diff --git a/.gitattributes b/.gitattributes index 68ac37d221d..c44cb731c86 100644 --- a/.gitattributes +++ b/.gitattributes @@ -5450,6 +5450,7 @@ src/mame/layout/goldnpkr.lay svneol=native#text/plain src/mame/layout/gorf.lay svneol=native#text/plain src/mame/layout/grchamp.lay svneol=native#text/plain src/mame/layout/gridiron.lay svneol=native#text/plain +src/mame/layout/gunchamp.lay svneol=native#text/plain src/mame/layout/gunfight.lay svneol=native#text/plain src/mame/layout/gypsyjug.lay svneol=native#text/plain src/mame/layout/icecold.lay svneol=native#text/plain diff --git a/src/mame/drivers/8080bw.c b/src/mame/drivers/8080bw.c index ff68453710a..3093058655d 100644 --- a/src/mame/drivers/8080bw.c +++ b/src/mame/drivers/8080bw.c @@ -201,6 +201,7 @@ #include "cosmicm.lh" #include "galactic.lh" +#include "gunchamp.lh" #include "shuttlei.lh" #include "spacecom.lh" @@ -4681,7 +4682,7 @@ GAME( 1979, yosakdona, yosakdon, yosakdon, yosakdon, driver_device, 0, ROT270 GAMEL(1979, shuttlei, 0, shuttlei, shuttlei, driver_device, 0, ROT270, "Omori Electric Co., Ltd.", "Shuttle Invader", GAME_SUPPORTS_SAVE | GAME_IMPERFECT_SOUND, layout_shuttlei ) GAMEL(1979, skylove, 0, shuttlei, skylove, driver_device, 0, ROT270, "Omori Electric Co., Ltd.", "Sky Love", GAME_SUPPORTS_SAVE | GAME_IMPERFECT_SOUND, layout_shuttlei ) GAME (1978, claybust, 0, claybust, claybust, driver_device, 0, ROT0, "Model Racing", "Claybuster", GAME_SUPPORTS_SAVE | GAME_NO_SOUND ) // no titlescreen, Claybuster according to flyers -GAME (1980, gunchamp, 0, claybust, gunchamp, driver_device, 0, ROT0, "Model Racing", "Gun Champ", GAME_SUPPORTS_SAVE | GAME_NO_SOUND ) // no titlescreen, Gun Champ according to original cab +GAMEL(1980, gunchamp, 0, claybust, gunchamp, driver_device, 0, ROT0, "Model Racing", "Gun Champ", GAME_SUPPORTS_SAVE | GAME_NO_SOUND, gunchamp ) // no titlescreen, Gun Champ according to original cab GAME( 1980?,astropal, 0, astropal, astropal, driver_device, 0, ROT0, "Sidam?", "Astropal", GAME_SUPPORTS_SAVE | GAME_IMPERFECT_SOUND ) GAME( 1979?,attackfc, 0, attackfc, attackfc, _8080bw_state, attackfc, ROT0, "Electronic Games Systems", "Attack Force", GAME_SUPPORTS_SAVE | GAME_NO_SOUND ) diff --git a/src/mame/drivers/sshot.c b/src/mame/drivers/sshot.c index f4a94819c9f..83a237517d6 100644 --- a/src/mame/drivers/sshot.c +++ b/src/mame/drivers/sshot.c @@ -163,6 +163,9 @@ Given CS numbers this is released after the other GunChamp #include "emu.h" #include "cpu/scmp/scmp.h" +#include "gunchamp.lh" + + class supershot_state : public driver_device { public: @@ -396,4 +399,4 @@ ROM_END GAME( 1979, sshot, 0, supershot, supershot, driver_device, 0, ROT0, "Model Racing", "Super Shot", GAME_IMPERFECT_GRAPHICS | GAME_NO_SOUND ) -GAME( 1980, gunchamps, gunchamp, supershot, supershot, driver_device, 0, ROT0, "Model Racing", "Gun Champ (newer, Super Shot hardware)", GAME_IMPERFECT_GRAPHICS | GAME_NO_SOUND | GAME_NOT_WORKING) +GAMEL(1980, gunchamps, gunchamp, supershot, supershot, driver_device, 0, ROT0, "Model Racing", "Gun Champ (newer, Super Shot hardware)", GAME_IMPERFECT_GRAPHICS | GAME_NO_SOUND | GAME_NOT_WORKING, gunchamp ) diff --git a/src/mame/layout/gunchamp.lay b/src/mame/layout/gunchamp.lay new file mode 100644 index 00000000000..493a45cfb4e --- /dev/null +++ b/src/mame/layout/gunchamp.lay @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/mame/mame.mak b/src/mame/mame.mak index ff32aa092a7..e636c4e44f1 100644 --- a/src/mame/mame.mak +++ b/src/mame/mame.mak @@ -2267,6 +2267,7 @@ $(DRIVERS)/30test.o: $(LAYOUT)/30test.lh $(DRIVERS)/8080bw.o: $(LAYOUT)/cosmicm.lh \ $(LAYOUT)/galactic.lh \ + $(LAYOUT)/gunchamp.lh \ $(LAYOUT)/shuttlei.lh \ $(LAYOUT)/spacecom.lh @@ -2610,6 +2611,8 @@ $(DRIVERS)/sspeedr.o: $(LAYOUT)/sspeedr.lh $(DRIVERS)/stactics.o: $(LAYOUT)/stactics.lh +$(DRIVERS)/sshot.o: $(LAYOUT)/gunchamp.lh + $(DRIVERS)/sstrangr.o: $(LAYOUT)/sstrangr.lh $(DRIVERS)/subsino.o: $(LAYOUT)/victor5.lh \