all repos — mgba @ 2575097b7cb40d8871d57810a06e16b9bcccd585

mGBA Game Boy Advance Emulator

GBA BIOS: Stub out SoundBias
Jeffrey Pfau jeffrey@endrift.com
Sun, 19 Jul 2015 18:14:09 -0700
commit

2575097b7cb40d8871d57810a06e16b9bcccd585

parent

d588b8c462d780cea27489a0dc697bf0c5e36984

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

jump to
M CHANGESCHANGES

@@ -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.csrc/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;