all repos — mgba @ 49f573662b29cdebb6964a3de6ae0038fc2ffa75

mGBA Game Boy Advance Emulator

Merge branch 'master' into medusa
Vicki Pfau vi@endrift.com
Sat, 08 Aug 2020 20:54:10 -0700
commit

49f573662b29cdebb6964a3de6ae0038fc2ffa75

parent

4ad690ab54a02f1575efb536ed3f2760b9ee53c1

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

jump to
M src/gba/hardware.csrc/gba/hardware.c

@@ -310,6 +310,9 @@ mLOG(GBA_HW, STUB, "Unimplemented RTC command %u", RTCCommandDataGetCommand(rtc->command));

break; } unsigned output = (outputByte >> rtc->bitsRead) & 1; + if (rtc->bitsRead == 0) { + mLOG(GBA_HW, DEBUG, "RTC output byte %02X", outputByte); + } return output; }