all repos — mgba @ 05e04ba76a396c4e54933951bf72f90097865438

mGBA Game Boy Advance Emulator

GBA Memory: Allow SRAM to be 64kB
Jeffrey Pfau jeffrey@endrift.com
Wed, 15 Apr 2015 21:36:07 -0700
commit

05e04ba76a396c4e54933951bf72f90097865438

parent

af19f5bc4502098ed4333d04fa94e1668cb776bf

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -23,6 +23,7 @@ - Qt: Fix regression where video would not record if the game had already started

- GBA: Fix rewind boundary conditions - GBA: Add initial I/O register settings for background matrix registers - Qt: Fix potential crash if a gamepad causes focus to change + - GBA Memory: Allow SRAM to be 64kB Misc: - Qt: Show multiplayer numbers in window title
M src/gba/memory.hsrc/gba/memory.h

@@ -61,7 +61,7 @@ SIZE_OAM = 0x00000400,

SIZE_CART0 = 0x02000000, SIZE_CART1 = 0x02000000, SIZE_CART2 = 0x02000000, - SIZE_CART_SRAM = 0x00008000, + SIZE_CART_SRAM = 0x00010000, SIZE_CART_FLASH512 = 0x00010000, SIZE_CART_FLASH1M = 0x00020000, SIZE_CART_EEPROM = 0x00002000