mirror of https://github.com/mgba-emu/mgba.git
GBA Memory: Allow SRAM to be 64kB
This commit is contained in:
parent
af19f5bc45
commit
05e04ba76a
1
CHANGES
1
CHANGES
|
@ -23,6 +23,7 @@ Bugfixes:
|
|||
- 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
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ enum {
|
|||
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
|
||||
|
|
Loading…
Reference in New Issue