diff options
Diffstat (limited to 'src/devices/bus/c64/warp_speed.cpp')
-rw-r--r-- | src/devices/bus/c64/warp_speed.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/c64/warp_speed.cpp b/src/devices/bus/c64/warp_speed.cpp index 3c266e3618d..e9098dadb44 100644 --- a/src/devices/bus/c64/warp_speed.cpp +++ b/src/devices/bus/c64/warp_speed.cpp @@ -38,10 +38,10 @@ //************************************************************************** #define UNSCRAMBLE_ADDRESS(_offset) \ - bitswap<16>(_offset,15,14,12,13,5,2,7,9,11,10,8,6,4,3,1,0) + BITSWAP16(_offset,15,14,12,13,5,2,7,9,11,10,8,6,4,3,1,0) #define UNSCRAMBLE_DATA(_data) \ - bitswap<8>(_data,7,6,5,0,1,4,2,3) + BITSWAP8(_data,7,6,5,0,1,4,2,3) |