summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/jy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nes/jy.cpp')
-rw-r--r--src/devices/bus/nes/jy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/nes/jy.cpp b/src/devices/bus/nes/jy.cpp
index 38a30848859..191892ef544 100644
--- a/src/devices/bus/nes/jy.cpp
+++ b/src/devices/bus/nes/jy.cpp
@@ -296,7 +296,7 @@ READ8_MEMBER(nes_jy_typea_device::read_m)
inline uint8_t nes_jy_typea_device::unscramble(uint8_t bank)
{
- return BITSWAP8(bank & 0x7f,7,0,1,2,3,4,5,6);
+ return bitswap<8>(bank & 0x7f,7,0,1,2,3,4,5,6);
}
void nes_jy_typea_device::update_prg()