all repos — mgba @ 803914b30e10b44226829e0ac92bfc86a2dde6f8

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

803914b30e10b44226829e0ac92bfc86a2dde6f8

parent

d5a60984484df39ebf1fe6b5421128e838e0ee08

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

jump to
M CHANGESCHANGES

@@ -12,6 +12,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