summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/silverrock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/silverrock.cpp')
-rw-r--r--src/devices/bus/c64/silverrock.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/silverrock.cpp b/src/devices/bus/c64/silverrock.cpp
index a34f21d17a7..2260b82738a 100644
--- a/src/devices/bus/c64/silverrock.cpp
+++ b/src/devices/bus/c64/silverrock.cpp
@@ -37,10 +37,10 @@
//**************************************************************************
#define UNSCRAMBLE_ADDRESS(_offset) \
- bitswap<16>(_offset,15,14,13,12,1,0,2,3,11,10,9,8,7,6,5,4)
+ BITSWAP16(_offset,15,14,13,12,1,0,2,3,11,10,9,8,7,6,5,4)
#define UNSCRAMBLE_DATA(_data) \
- bitswap<8>(_data,7,6,5,4,0,1,2,3)
+ BITSWAP8(_data,7,6,5,4,0,1,2,3)