GBA BIOS: Stub out SoundBias
Jeffrey Pfau jeffrey@endrift.com
Sun, 19 Jul 2015 18:14:09 -0700
2 files changed,
5 insertions(+),
0 deletions(-)
M
CHANGES
→
CHANGES
@@ -106,6 +106,7 @@ - GBA Video: Slightly optimize mode 0 mosaic rendering
- VFS: Add sync method to force syncing with backing - GBA: Savedata is now synced shortly after data finishes being written - GBA Input: Allow axes and buttons to be mapped to the same key + - GBA BIOS: Stub out SoundBias 0.2.1: (2015-05-13) Bugfixes:
M
src/gba/bios.c
→
src/gba/bios.c
@@ -300,6 +300,10 @@ _unFilter(gba, immediate == 0x18 ? 2 : 1, immediate == 0x16 ? 1 : 2);
break; } break; + case 0x19: + // SoundBias is mostly meaningless here + GBALog(gba, GBA_LOG_STUB, "Stub software interrupt: SoundBias (19)"); + break; case 0x1F: _MidiKey2Freq(gba); break;