all repos — mgba @ 9d54e242e37d66dc010d42ff2a6aeef433ed6833

mGBA Game Boy Advance Emulator

GBA I/O: Mask off WAITCNT bits that cannot be written (fixes #457)
Jeffrey Pfau jeffrey@endrift.com
Fri, 23 Dec 2016 15:41:11 -0800
commit

9d54e242e37d66dc010d42ff2a6aeef433ed6833

parent

6eadd35ee6b0670b0bc4e348df5b5edde5707fea

2 files changed, 2 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -40,6 +40,7 @@ - GB Audio: Fix serialization of channel 3 and NR52 properties

- GB: Properly initialize sramRealVf variable - Qt: Fix Apply button for key and controller configurations - GB Video: Initialize LCDC in renderer + - GBA I/O: Mask off WAITCNT bits that cannot be written Misc: - SDL: Remove scancode key input - GBA Video: Clean up unused timers
M src/gba/io.csrc/gba/io.c

@@ -535,6 +535,7 @@ break;

// Interrupts and misc case REG_WAITCNT: + value &= 0x5FFF; GBAAdjustWaitstates(gba, value); break; case REG_IE: