diff options
| author | 2011-07-10 02:13:21 +0000 | |
|---|---|---|
| committer | 2011-07-10 02:13:21 +0000 | |
| commit | 17a94a70ce9837675957c856435fbe2d9d10f73c (patch) | |
| tree | 9ea1d4e0ca2c9c25504d5064ccfbf0ad5eed03c9 | |
| parent | 35dbc8a0cd4e60a7c3f836a858a286dcee5eb64e (diff) | |
Fixed 00335: quasar: 3 players start mapped even though it is a 2 player game.
Also, moved documentation from quasar.c to laserbat.c for catnmous (no whatsnew)
| -rw-r--r-- | src/mame/drivers/laserbat.c | 26 | ||||
| -rw-r--r-- | src/mame/drivers/quasar.c | 40 |
2 files changed, 31 insertions, 35 deletions
diff --git a/src/mame/drivers/laserbat.c b/src/mame/drivers/laserbat.c index 5cbbb4e7d27..d9ed6e3448a 100644 --- a/src/mame/drivers/laserbat.c +++ b/src/mame/drivers/laserbat.c @@ -945,6 +945,32 @@ ROM_START( lazarian ) ROM_LOAD( "lz82s100.10m", 0x0000, 0x00f5, CRC(c3eb562a) SHA1(65dff81b2e5321d530e5171dab9aa3809ab38b4d) ) ROM_END +/* +Zaccaria "Cat 'N Mouse" 1982 + +similar to "Quasar" execept it uses an 82s100 for color table lookup +and has a larger program prom + + +Cat N Mouse (Zaccaria 1982) + +CPU Board + + 2650 7b 6b 5b 3b 2b + 7c 6c 5c 3c 2c + + 2636 2636 2636 + 11g 10g 8g + 14l + clr + +Sound Board 1b11107 + +6802 +6821 +8910 +*/ + ROM_START( catnmous ) ROM_REGION( 0x8000, "maincpu", 0 ) ROM_LOAD( "02-1.7c", 0x0000, 0x0400, CRC(d26ec566) SHA1(ceb16f64a3c1ff25a9eab6549f1ae24085bb9e27) ) diff --git a/src/mame/drivers/quasar.c b/src/mame/drivers/quasar.c index c7f88bf3131..edffe3253b3 100644 --- a/src/mame/drivers/quasar.c +++ b/src/mame/drivers/quasar.c @@ -10,12 +10,8 @@ ------ - Sound (missing invader effect - still not sure all noise in correct places) - Phase 3 - seems awfully hard - dip settings ? - - - - Make Asto Wars to boot - - Make Cat'n Mouse to boot - (it jumps to unpopulated rom, check jump at 0x2e62 and 0x4076) - - ... + - Hook up Coin Counter + - Test/Service Mode - not working? ************************************************************************ @@ -29,32 +25,6 @@ Quasar by Zaccaria (1980) I8085 Sound Board -************************************************************************ - -Zaccaria "Cat 'N Mouse" 1982 - -similar to "Quasar" execept it uses an 82s100 for color table lookup -and has a larger program prom - - -Cat N Mouse (Zaccaria 1982) - -CPU Board - - 2650 7b 6b 5b 3b 2b - 7c 6c 5c 3c 2c - - 2636 2636 2636 - 11g 10g 8g - 14l - clr - -Sound Board 1b11107 - -6802 -6821 -8910 - ************************************************************************/ #include "emu.h" @@ -198,17 +168,17 @@ static INPUT_PORTS_START( quasar ) PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_COCKTAIL PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_TILT ) - PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON3 ) /* switch collaudo */ + PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_SERVICE ) /* test switch */ PORT_START("IN1") - PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_BUTTON4 ) /* tavalino */ + PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* table (from manual) */ PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_COCKTAIL PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_COCKTAIL PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_COCKTAIL PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON2 ) - PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_START3 ) /* count enable */ + PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* count enable (from manual) */ PORT_START("DSW0") PORT_DIPNAME( 0x0c, 0x04, DEF_STR( Coin_A ) ) /* confirmed */ |
