GBA BIOS: Add comments
Jeffrey Pfau jeffrey@endrift.com
Wed, 22 Apr 2015 23:33:56 -0700
1 files changed,
4 insertions(+),
0 deletions(-)
jump to
M
src/gba/bios.c
→
src/gba/bios.c
@@ -238,6 +238,7 @@ }
switch (cpu->gprs[1] >> BASE_OFFSET) { default: GBALog(gba, GBA_LOG_GAME_ERROR, "Bad LZ77 destination"); + // Fall through case REGION_WORKING_RAM: case REGION_WORKING_IRAM: case REGION_VRAM:@@ -253,6 +254,7 @@ }
switch (cpu->gprs[1] >> BASE_OFFSET) { default: GBALog(gba, GBA_LOG_GAME_ERROR, "Bad Huffman destination"); + // Fall through case REGION_WORKING_RAM: case REGION_WORKING_IRAM: case REGION_VRAM:@@ -269,6 +271,7 @@ }
switch (cpu->gprs[1] >> BASE_OFFSET) { default: GBALog(gba, GBA_LOG_GAME_ERROR, "Bad RL destination"); + // Fall through case REGION_WORKING_RAM: case REGION_WORKING_IRAM: case REGION_VRAM:@@ -286,6 +289,7 @@ }
switch (cpu->gprs[1] >> BASE_OFFSET) { default: GBALog(gba, GBA_LOG_GAME_ERROR, "Bad UnFilter destination"); + // Fall through case REGION_WORKING_RAM: case REGION_WORKING_IRAM: case REGION_VRAM: