all repos — mgba @ bf8cc66a8533d15495a32d4fb1ec8feee9ac7731

mGBA Game Boy Advance Emulator

GB Memory: Initialize peripheral pointers
Vicki Pfau vi@endrift.com
Tue, 25 Jul 2017 18:34:39 -0700
commit

bf8cc66a8533d15495a32d4fb1ec8feee9ac7731

parent

010cb8f49db2e35f7aa5011103a93b0b1818b45a

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

jump to
M CHANGESCHANGES

@@ -9,6 +9,7 @@ - Qt: Fix command line debugger closing second game

- GB Serialize: Fix audio state loading - GB Video: Fix dot clock timing being slightly wrong - GB MBC: Pocket Cam memory should be accessible without enabling + - GB Memory: Initialize peripheral pointers Misc: - GBA Timer: Use global cycles for timers - GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
M src/gb/memory.csrc/gb/memory.c

@@ -103,6 +103,8 @@ gb->memory.mbcRead = NULL;

gb->memory.mbcWrite = NULL; gb->memory.rtc = NULL; + gb->memory.rotation = NULL; + gb->memory.rumble = NULL; GBIOInit(gb); }