summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/mos8722.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-09-17 06:49:13 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-09-17 06:49:13 +0000
commite25c13f2532730ebf50d0cffa0147393fd8e0228 (patch)
treea6c25d1de7041f26afed559dbc6670fa550e6b41 /src/mess/machine/mos8722.c
parentf97e8f00818bd8d898facc206ed33ab72cf10a75 (diff)
Clean-ups and version bumpmame0147
note: hoarded dump removed too from coco_cart.xml, this will not be tolerated
Diffstat (limited to 'src/mess/machine/mos8722.c')
-rw-r--r--src/mess/machine/mos8722.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/machine/mos8722.c b/src/mess/machine/mos8722.c
index 0c1cf2ec6cd..5c80c12ee64 100644
--- a/src/mess/machine/mos8722.c
+++ b/src/mess/machine/mos8722.c
@@ -24,7 +24,7 @@ enum
CR = 0,
PCRA, LCRA = PCRA,
PCRB, LCRB = PCRB,
- PCRC, LCRC = PCRC,
+ PCRC, LCRC = PCRC,
PCRD, LCRD = PCRD,
MCR,
RCR,
@@ -69,7 +69,7 @@ enum
// RAM configuration register
static const offs_t RCR_BOTTOM_ADDRESS[4] = { 0x0400, 0x1000, 0x0400, 0x1000 };
-static const offs_t RCR_TOP_ADDRESS[4] = { 0xf000, 0xf000, 0xe000, 0xc000 };
+static const offs_t RCR_TOP_ADDRESS[4] = { 0xf000, 0xf000, 0xe000, 0xc000 };
enum
{
@@ -337,7 +337,7 @@ offs_t mos8722_device::ta_r(offs_t offset, int aec, int *ms0, int *ms1, int *ms2
*cas1 = P1H_A16 ? 0 : 1;
}
}
-
+
if ((RCR_BOTTOM && offset < RCR_BOTTOM_ADDRESS[RCR_SHARE]) ||
(RCR_TOP && offset >= RCR_TOP_ADDRESS[RCR_SHARE]))
{