summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author briantro <briantro@users.noreply.github.com>2017-09-03 23:44:33 -0500
committer briantro <briantro@users.noreply.github.com>2017-09-03 23:44:33 -0500
commitb5f355425ac332b73314d13f8b64114639638319 (patch)
treed8037c2750cc6f018c6447c55e045a1c82778106
parent2fb457352d409a593f3c1315f0edab11ca5e8a97 (diff)
gaelco2.cpp: Clearly show control "bits" (nw)
-rw-r--r--src/mame/drivers/gaelco2.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/mame/drivers/gaelco2.cpp b/src/mame/drivers/gaelco2.cpp
index 3d8ae93ebae..c9436bf57b1 100644
--- a/src/mame/drivers/gaelco2.cpp
+++ b/src/mame/drivers/gaelco2.cpp
@@ -836,9 +836,11 @@ REF: 940411
the byte at 0x1ff in the rom at u44 controls the language / region settings
and even allows for an alt. title of Lizard Hunt
- bit 0x08 = title (0x00 = LIZARD HUNT, 0x08 = ALLIGATOR HUNT)
- bit 0x04 = language (0x00 = SPANISH, 0x04 = ENGLISH)
- bit 0x03 = region warning ( 0x00, 0x02 = USA, 0x01 = NOT USA, 0x03 = NO WARNING)
+ Bits Usage
+ ---------------------------------------------------------------------------------
+ 0000 1000 Title (0x00 = LIZARD HUNT, 0x08 = ALLIGATOR HUNT)
+ 0000 0100 Language (0x00 = SPANISH, 0x04 = ENGLISH)
+ 0000 0011 Region warning ( 0x00, 0x02 = USA, 0x01 = NOT USA, 0x03 = NO WARNING)
*/
ROM_START( aligator )