From e5f5ebeaff50626cd8c4e6c053e3cf4e2a6ee37d Mon Sep 17 00:00:00 2001 From: Fabio Priuli Date: Fri, 11 Dec 2009 23:30:21 +0000 Subject: [PATCH] Not worth mention: Properly amended s2636 to have correct work ram size. Thanks go to Mariusz for noticing it. it's funny that I spend my days solving PDEs and functional analysis problems, then I manage to easily fail these stupid calculations... --- src/mame/drivers/cvs.c | 6 +++--- src/mame/drivers/galaxia.c | 6 +++--- src/mame/drivers/laserbat.c | 6 +++--- src/mame/drivers/malzak.c | 4 ++-- src/mame/drivers/quasar.c | 6 +++--- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/mame/drivers/cvs.c b/src/mame/drivers/cvs.c index d432d2918e3..08636bc3df3 100644 --- a/src/mame/drivers/cvs.c +++ b/src/mame/drivers/cvs.c @@ -1026,21 +1026,21 @@ GFXDECODE_END static const s2636_interface s2636_0_config = { "screen", - 0xff, + 0x100, CVS_S2636_Y_OFFSET, CVS_S2636_X_OFFSET }; static const s2636_interface s2636_1_config = { "screen", - 0xff, + 0x100, CVS_S2636_Y_OFFSET, CVS_S2636_X_OFFSET }; static const s2636_interface s2636_2_config = { "screen", - 0xff, + 0x100, CVS_S2636_Y_OFFSET, CVS_S2636_X_OFFSET }; diff --git a/src/mame/drivers/galaxia.c b/src/mame/drivers/galaxia.c index 4838468408b..bb0ec5b0c24 100644 --- a/src/mame/drivers/galaxia.c +++ b/src/mame/drivers/galaxia.c @@ -234,21 +234,21 @@ static INTERRUPT_GEN( galaxia_interrupt ) static const s2636_interface s2636_0_config = { "screen", - 0xff, + 0x100, 3, -27 }; static const s2636_interface s2636_1_config = { "screen", - 0xff, + 0x100, 3, -27 }; static const s2636_interface s2636_2_config = { "screen", - 0xff, + 0x100, 3, -27 }; diff --git a/src/mame/drivers/laserbat.c b/src/mame/drivers/laserbat.c index ae150703c07..2f9aa26dd27 100644 --- a/src/mame/drivers/laserbat.c +++ b/src/mame/drivers/laserbat.c @@ -684,21 +684,21 @@ static INTERRUPT_GEN( zaccaria_cb1_toggle ) static const s2636_interface s2636_1_config = { "screen", - 0xff, + 0x100, 0, -19 }; static const s2636_interface s2636_2_config = { "screen", - 0xff, + 0x100, 0, -19 }; static const s2636_interface s2636_3_config = { "screen", - 0xff, + 0x100, 0, -19 }; diff --git a/src/mame/drivers/malzak.c b/src/mame/drivers/malzak.c index f44c851f9da..9f55a951ae3 100644 --- a/src/mame/drivers/malzak.c +++ b/src/mame/drivers/malzak.c @@ -366,14 +366,14 @@ static const sn76477_interface sn76477_intf = static const s2636_interface s2636_0_config = { "screen", - 0xff, + 0x100, 0, -16 /* -8, -16 */ }; static const s2636_interface s2636_1_config = { "screen", - 0xff, + 0x100, 0, -16 /* -9, -16 */ }; diff --git a/src/mame/drivers/quasar.c b/src/mame/drivers/quasar.c index 1d338da8f06..c97da1481e4 100644 --- a/src/mame/drivers/quasar.c +++ b/src/mame/drivers/quasar.c @@ -317,21 +317,21 @@ static INTERRUPT_GEN( quasar_interrupt ) static const s2636_interface s2636_0_config = { "screen", - 0xff, + 0x100, CVS_S2636_Y_OFFSET, CVS_S2636_X_OFFSET }; static const s2636_interface s2636_1_config = { "screen", - 0xff, + 0x100, CVS_S2636_Y_OFFSET, CVS_S2636_X_OFFSET }; static const s2636_interface s2636_2_config = { "screen", - 0xff, + 0x100, CVS_S2636_Y_OFFSET, CVS_S2636_X_OFFSET };