diff options
author | 2018-01-28 14:25:52 +1100 | |
---|---|---|
committer | 2018-01-28 14:25:52 +1100 | |
commit | 4e8bb7c7e5c84ee384fd2c3b68896ca74cff9884 (patch) | |
tree | 5a185ef6a4070f53ad73122f280ca872f7580719 /src/devices/bus/psx/gamebooster.cpp | |
parent | 46af74afdfc4735a47db4ccea6263932e118b198 (diff) |
srcclean and regenerate localisations (nw)
Diffstat (limited to 'src/devices/bus/psx/gamebooster.cpp')
-rw-r--r-- | src/devices/bus/psx/gamebooster.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/psx/gamebooster.cpp b/src/devices/bus/psx/gamebooster.cpp index 0a04ec215a5..8cc92e2f5dc 100644 --- a/src/devices/bus/psx/gamebooster.cpp +++ b/src/devices/bus/psx/gamebooster.cpp @@ -3,8 +3,8 @@ /********************************************************************** Datel Game Booster for Playstation 1 - - Gameboy emulator with Gameboy cartridge slot + + Gameboy emulator with Gameboy cartridge slot **********************************************************************/ @@ -106,7 +106,7 @@ WRITE16_MEMBER(psx_gamebooster_device::exp_w) { offset -= 0x20000; logerror("%s: psx_gamebooster_device::exp_w %04x %04x\n", machine().describe_context(), offset*2, data); - + if (mem_mask & 0xff00) m_cartslot->write_bank(space, (offset*2)+1, data>>8); if (mem_mask & 0x00ff) m_cartslot->write_bank(space, (offset*2)+0, data); // send this 2nd or it erases the bank with the above |