From 531acfd487ca28710dd97639d8dbc1c6b3bf831b Mon Sep 17 00:00:00 2001 From: Robbbert Date: Tue, 11 Sep 2012 10:52:06 +0000 Subject: rotation: preliminary layout --- .gitattributes | 1 + src/mame/drivers/g627.c | 4 ++ src/mame/layout/g627.lay | 160 +++++++++++++++++++++++++++++++++++++++++++++++ src/mame/mame.mak | 2 + 4 files changed, 167 insertions(+) create mode 100644 src/mame/layout/g627.lay diff --git a/.gitattributes b/.gitattributes index a3a1a7920c2..8b9e4cf3ba6 100644 --- a/.gitattributes +++ b/.gitattributes @@ -4295,6 +4295,7 @@ src/mame/layout/finallap.lay svneol=native#text/plain src/mame/layout/firebeat.lay svneol=native#text/plain src/mame/layout/flicker.lay svneol=native#text/plain src/mame/layout/fortecrd.lay svneol=native#text/plain +src/mame/layout/g627.lay svneol=native#text/plain src/mame/layout/galaxi.lay -text svneol=native#plain/text src/mame/layout/gamball.lay svneol=native#text/plain src/mame/layout/geebee.lay svneol=native#text/plain diff --git a/src/mame/drivers/g627.c b/src/mame/drivers/g627.c index 2f23085a7bd..b8cf858453f 100644 --- a/src/mame/drivers/g627.c +++ b/src/mame/drivers/g627.c @@ -30,6 +30,7 @@ ToDo: #include "cpu/z80/z80.h" #include "machine/i8155.h" #include "sound/astrocde.h" +#include "g627.lh" class g627_state : public driver_device @@ -125,6 +126,9 @@ static MACHINE_CONFIG_START( g627, g627_state ) MCFG_SPEAKER_STANDARD_MONO("mono") MCFG_SOUND_ADD("astrocade", ASTROCADE, 14138000/8) // 0066-117XX audio chip MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 1.0) + + /* Video */ + MCFG_DEFAULT_LAYOUT(layout_g627) MACHINE_CONFIG_END /*------------------------------------------------------------------- diff --git a/src/mame/layout/g627.lay b/src/mame/layout/g627.lay new file mode 100644 index 00000000000..470c4124a28 --- /dev/null +++ b/src/mame/layout/g627.lay @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mame/mame.mak b/src/mame/mame.mak index 5ce3321cfdb..0bf4b79e290 100644 --- a/src/mame/mame.mak +++ b/src/mame/mame.mak @@ -2049,6 +2049,8 @@ $(DRIVERS)/funworld.o: $(LAYOUT)/jollycrd.lh \ $(LAYOUT)/novoplay.lh \ $(LAYOUT)/royalcrd.lh +$(DRIVERS)/g627.o: $(LAYOUT)/g627.lh + $(DRIVERS)/galaxi.o: $(LAYOUT)/galaxi.lh $(DRIVERS)/gatron.o: $(LAYOUT)/poker41.lh \ -- cgit v1.2.3