summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <robbbert@users.noreply.github.com>2012-11-08 08:39:35 +0000
committer Robbbert <robbbert@users.noreply.github.com>2012-11-08 08:39:35 +0000
commita625b480a112adfeedbdcdddad9bec9b4c18bd16 (patch)
treeda86d8f175b3b64befe9f325c41de3fb8ef9c594
parent0b83cd99a169d012c7b3941db7795a0f8a386105 (diff)
Lupin3 - added my notes from Misfitmame (nw)
-rw-r--r--src/mame/drivers/8080bw.c21
1 files changed, 16 insertions, 5 deletions
diff --git a/src/mame/drivers/8080bw.c b/src/mame/drivers/8080bw.c
index be120b5dd77..306971e1148 100644
--- a/src/mame/drivers/8080bw.c
+++ b/src/mame/drivers/8080bw.c
@@ -1265,11 +1265,22 @@ MACHINE_CONFIG_END
-/*******************************************************/
-/* */
-/* Taito "Lupin III" */
-/* */
-/*******************************************************/
+/*******************************************************************************************/
+/* */
+/* Taito "Lupin III" */
+/* */
+/* The rom at 5000 is optional. It contains code for colour ram, and the tune that plays */
+/* in the "wife vs man" scene. If you remove this rom, bits 0 and 1 of port 0 must */
+/* be set High. The colour will then be determined by the 2 proms instead. Bit 7 */
+/* of port 5 will select which prom to use. */
+/* */
+/* Differences between the 2 sets: */
+/* - Set 2 has a language selection switch. In the Japanese position, it looks */
+/* the same as set 1. Set 1 is always in Japanese. */
+/* - Set 1, bit 6 of port 3 activates when the wife is kicking the man. */
+/* - The dogs and policemen are yellow in set 1, and different colours in set 2. */
+/* */
+/*******************************************************************************************/
static ADDRESS_MAP_START( lupin3_io_map, AS_IO, 8, _8080bw_state )
AM_RANGE(0x00, 0x00) AM_READ_PORT("IN0")