summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/gaelco2.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-02-24 07:46:57 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-02-24 07:46:57 +0100
commit3abcaee63ff285514e8b51a60949c97a7dfa5304 (patch)
tree63e6be46c1932606689f9bfacc920d69cfc4b51f /src/mame/machine/gaelco2.cpp
parent0cbd8782119b140920097a2bee76f36aef014be9 (diff)
Cleanups and version bump
Diffstat (limited to 'src/mame/machine/gaelco2.cpp')
-rw-r--r--src/mame/machine/gaelco2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/machine/gaelco2.cpp b/src/mame/machine/gaelco2.cpp
index 0ac284242d7..099520b2813 100644
--- a/src/mame/machine/gaelco2.cpp
+++ b/src/mame/machine/gaelco2.cpp
@@ -291,7 +291,7 @@ static UINT32 rol(UINT32 x, unsigned int c)
{
return (x << c) | (x >> (32 - c));
}
-
+
static UINT16 get_lo(UINT32 x)
{
return ((x & 0x00000010) << 1) |
@@ -308,7 +308,7 @@ static UINT16 get_lo(UINT32 x)
((x & 0x00044000) >> 5) |
((x & 0x00000020) >> 1);
}
-
+
static UINT16 get_hi(UINT32 x)
{
return ((x & 0x00001400) >> 0) |
@@ -327,7 +327,7 @@ static UINT16 get_hi(UINT32 x)
((x & 0x00000080) >> 4) |
((x & 0x00000100) >> 1);
}
-
+
static UINT16 get_out(UINT16 x)
{
return ((x & 0xc840) << 0) |
@@ -343,7 +343,7 @@ static UINT16 get_out(UINT16 x)
((x & 0x2000) >> 6) |
((x & 0x0020) >> 2);
}
-
+
UINT16 mangle(UINT32 x)
{
UINT16 a = get_lo(x);