all repos — mgba @ e9b1f879c153d09af4cc35fd2252c68a7baef887

mGBA Game Boy Advance Emulator

GBA SIO: Fix Multiplayer busy bit
Vicki Pfau vi@endrift.com
Mon, 24 Feb 2020 19:54:05 -0800
commit

e9b1f879c153d09af4cc35fd2252c68a7baef887

parent

f0a17923cdf6c88c695113567eb16c924688d127

2 files changed, 3 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -1,4 +1,6 @@

0.8.2: (Future) +Emulation fixes: + - GBA SIO: Fix Multiplayer busy bit Other fixes: - Core: Fix ELF loading regression (fixes mgba.io/i/1669) - Core: Fix crash modifying hash table entry (fixes mgba.io/i/1673)
M include/mgba/internal/gba/sio.hinclude/mgba/internal/gba/sio.h

@@ -47,7 +47,7 @@ DECL_BIT(GBASIOMultiplayer, Slave, 2);

DECL_BIT(GBASIOMultiplayer, Ready, 3); DECL_BITS(GBASIOMultiplayer, Id, 4, 2); DECL_BIT(GBASIOMultiplayer, Error, 6); -DECL_BIT(GBASIOMultiplayer, Busy, 8); +DECL_BIT(GBASIOMultiplayer, Busy, 7); DECL_BIT(GBASIOMultiplayer, Irq, 14); struct GBASIODriverSet {