Merge pull request #638 from cout/increase_sram_size

Increase SRAM size to 512KB
This commit is contained in:
OV2 2020-03-31 20:37:27 +02:00 committed by GitHub
commit 432fc08498
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -894,7 +894,7 @@ static void S9xDeinterleaveGD24 (int size, uint8 *base)
bool8 CMemory::Init (void)
{
RAM = (uint8 *) malloc(0x20000);
SRAM = (uint8 *) malloc(0x20000);
SRAM = (uint8 *) malloc(0x80000);
VRAM = (uint8 *) malloc(0x10000);
ROM = (uint8 *) malloc(MAX_ROM_SIZE + 0x200 + 0x8000);
@ -935,7 +935,7 @@ bool8 CMemory::Init (void)
}
memset(RAM, 0, 0x20000);
memset(SRAM, 0, 0x20000);
memset(SRAM, 0, 0x80000);
memset(VRAM, 0, 0x10000);
memset(ROM, 0, MAX_ROM_SIZE + 0x200 + 0x8000);

View File

@ -1199,7 +1199,7 @@ void S9xFreezeToStream (STREAM stream)
FreezeBlock (stream, "RAM", Memory.RAM, 0x20000);
FreezeBlock (stream, "SRA", Memory.SRAM, 0x20000);
FreezeBlock (stream, "SRA", Memory.SRAM, 0x80000);
FreezeBlock (stream, "FIL", Memory.FillRAM, 0x8000);
@ -1404,9 +1404,9 @@ int S9xUnfreezeFromStream (STREAM stream)
break;
if (fast)
result = UnfreezeBlock(stream, "SRA", Memory.SRAM, 0x20000);
result = UnfreezeBlock(stream, "SRA", Memory.SRAM, 0x80000);
else
result = UnfreezeBlockCopy (stream, "SRA", &local_sram, 0x20000);
result = UnfreezeBlockCopy (stream, "SRA", &local_sram, 0x80000);
if (result != SUCCESS)
break;
@ -1576,7 +1576,7 @@ int S9xUnfreezeFromStream (STREAM stream)
memcpy(Memory.RAM, local_ram, 0x20000);
if (local_sram)
memcpy(Memory.SRAM, local_sram, 0x20000);
memcpy(Memory.SRAM, local_sram, 0x80000);
if (local_fillram)
memcpy(Memory.FillRAM, local_fillram, 0x8000);