2019-12-08 18:46:51 +00:00
|
|
|
/*
|
|
|
|
Copyright 2019 Arisotura, Raphaël Zumer
|
|
|
|
|
|
|
|
This file is part of melonDS.
|
|
|
|
|
|
|
|
melonDS is free software: you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU General Public License as published by the Free
|
|
|
|
Software Foundation, either version 3 of the License, or (at your option)
|
|
|
|
any later version.
|
|
|
|
|
|
|
|
melonDS is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with melonDS. If not, see http://www.gnu.org/licenses/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "GBACart.h"
|
|
|
|
#include "CRC32.h"
|
|
|
|
#include "Platform.h"
|
|
|
|
|
|
|
|
|
|
|
|
namespace GBACart_SRAM
|
|
|
|
{
|
|
|
|
|
2019-12-09 09:53:45 +00:00
|
|
|
|
|
|
|
enum SaveType {
|
|
|
|
S_NULL,
|
|
|
|
S_EEPROM4K,
|
|
|
|
S_EEPROM64K,
|
|
|
|
S_SRAM256K,
|
|
|
|
S_FLASH512K,
|
|
|
|
S_FLASH1M
|
|
|
|
};
|
|
|
|
|
2019-12-10 14:57:10 +00:00
|
|
|
// from DeSmuME
|
2019-12-09 09:53:45 +00:00
|
|
|
struct FlashProperties
|
|
|
|
{
|
|
|
|
u8 state;
|
|
|
|
u8 cmd;
|
|
|
|
u8 device;
|
|
|
|
u8 manufacturer;
|
|
|
|
u8 bank;
|
|
|
|
};
|
|
|
|
|
2019-12-08 18:46:51 +00:00
|
|
|
u8* SRAM;
|
2019-12-09 12:06:39 +00:00
|
|
|
FILE* SRAMFile;
|
2019-12-08 18:46:51 +00:00
|
|
|
u32 SRAMLength;
|
2019-12-09 09:53:45 +00:00
|
|
|
SaveType SRAMType;
|
|
|
|
FlashProperties SRAMFlash;
|
2019-12-08 18:46:51 +00:00
|
|
|
|
|
|
|
char SRAMPath[1024];
|
|
|
|
|
2019-12-09 09:53:45 +00:00
|
|
|
void (*WriteFunc)(u32 addr, u8 val);
|
|
|
|
|
|
|
|
|
|
|
|
void Write_Null(u32 addr, u8 val);
|
|
|
|
void Write_EEPROM(u32 addr, u8 val);
|
|
|
|
void Write_SRAM(u32 addr, u8 val);
|
|
|
|
void Write_Flash(u32 addr, u8 val);
|
|
|
|
|
2019-12-08 18:46:51 +00:00
|
|
|
|
|
|
|
bool Init()
|
|
|
|
{
|
|
|
|
SRAM = NULL;
|
2019-12-09 12:06:39 +00:00
|
|
|
SRAMFile = NULL;
|
2019-12-08 18:46:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeInit()
|
|
|
|
{
|
2019-12-09 12:06:39 +00:00
|
|
|
if (SRAMFile) fclose(SRAMFile);
|
2019-12-08 18:46:51 +00:00
|
|
|
if (SRAM) delete[] SRAM;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Reset()
|
|
|
|
{
|
2019-12-09 12:06:39 +00:00
|
|
|
if (SRAMFile) fclose(SRAMFile);
|
2019-12-08 18:46:51 +00:00
|
|
|
if (SRAM) delete[] SRAM;
|
2019-12-09 12:06:39 +00:00
|
|
|
|
2019-12-08 18:46:51 +00:00
|
|
|
SRAM = NULL;
|
2019-12-09 12:06:39 +00:00
|
|
|
SRAMFile = NULL;
|
2019-12-09 09:53:45 +00:00
|
|
|
SRAMLength = 0;
|
|
|
|
SRAMType = S_NULL;
|
|
|
|
SRAMFlash = {};
|
2019-12-08 18:46:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void DoSavestate(Savestate* file)
|
|
|
|
{
|
|
|
|
// TODO?
|
|
|
|
}
|
|
|
|
|
|
|
|
void LoadSave(const char* path)
|
|
|
|
{
|
|
|
|
if (SRAM) delete[] SRAM;
|
|
|
|
|
|
|
|
strncpy(SRAMPath, path, 1023);
|
|
|
|
SRAMPath[1023] = '\0';
|
2019-12-09 09:53:45 +00:00
|
|
|
SRAMLength = 0;
|
2019-12-08 18:46:51 +00:00
|
|
|
|
2019-12-09 12:06:39 +00:00
|
|
|
FILE* f = Platform::OpenFile(SRAMPath, "r+b");
|
2019-12-08 18:46:51 +00:00
|
|
|
if (f)
|
|
|
|
{
|
|
|
|
fseek(f, 0, SEEK_END);
|
|
|
|
SRAMLength = (u32)ftell(f);
|
|
|
|
SRAM = new u8[SRAMLength];
|
|
|
|
|
|
|
|
fseek(f, 0, SEEK_SET);
|
|
|
|
fread(SRAM, SRAMLength, 1, f);
|
|
|
|
|
2019-12-09 12:06:39 +00:00
|
|
|
SRAMFile = f;
|
2019-12-08 18:46:51 +00:00
|
|
|
}
|
2019-12-09 09:53:45 +00:00
|
|
|
|
|
|
|
switch (SRAMLength)
|
2019-12-08 18:46:51 +00:00
|
|
|
{
|
2019-12-09 09:53:45 +00:00
|
|
|
case 512:
|
|
|
|
SRAMType = S_EEPROM4K;
|
|
|
|
WriteFunc = Write_EEPROM;
|
|
|
|
break;
|
|
|
|
case 8192:
|
|
|
|
SRAMType = S_EEPROM64K;
|
|
|
|
WriteFunc = Write_EEPROM;
|
|
|
|
break;
|
|
|
|
case 32768:
|
|
|
|
SRAMType = S_SRAM256K;
|
|
|
|
WriteFunc = Write_SRAM;
|
|
|
|
break;
|
|
|
|
case 65536:
|
|
|
|
SRAMType = S_FLASH512K;
|
|
|
|
WriteFunc = Write_Flash;
|
|
|
|
break;
|
|
|
|
case 128*1024:
|
|
|
|
SRAMType = S_FLASH1M;
|
|
|
|
WriteFunc = Write_Flash;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("!! BAD SAVE LENGTH %d\n", SRAMLength);
|
|
|
|
case 0:
|
|
|
|
SRAMType = S_NULL;
|
|
|
|
WriteFunc = Write_Null;
|
|
|
|
break;
|
|
|
|
}
|
2019-12-08 18:46:51 +00:00
|
|
|
|
2019-12-09 09:53:45 +00:00
|
|
|
if (SRAMType == S_FLASH512K)
|
|
|
|
{
|
|
|
|
// Panasonic 64K chip
|
|
|
|
SRAMFlash.device = 0x1B;
|
|
|
|
SRAMFlash.manufacturer = 0x32;
|
|
|
|
}
|
|
|
|
else if (SRAMType == S_FLASH1M)
|
|
|
|
{
|
2019-12-09 11:09:30 +00:00
|
|
|
// Sanyo 128K chip
|
|
|
|
SRAMFlash.device = 0x13;
|
|
|
|
SRAMFlash.manufacturer = 0x62;
|
2019-12-08 18:46:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void RelocateSave(const char* path, bool write)
|
|
|
|
{
|
|
|
|
if (!write)
|
|
|
|
{
|
|
|
|
LoadSave(path); // lazy
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
strncpy(SRAMPath, path, 1023);
|
|
|
|
SRAMPath[1023] = '\0';
|
|
|
|
|
2019-12-09 12:06:39 +00:00
|
|
|
FILE *f = Platform::OpenFile(path, "r+b");
|
2019-12-08 18:46:51 +00:00
|
|
|
if (!f)
|
|
|
|
{
|
|
|
|
printf("GBACart_SRAM::RelocateSave: failed to create new file. fuck\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-12-09 12:06:39 +00:00
|
|
|
SRAMFile = f;
|
|
|
|
fwrite(SRAM, SRAMLength, 1, SRAMFile);
|
2019-12-08 18:46:51 +00:00
|
|
|
}
|
|
|
|
|
2019-12-10 14:57:10 +00:00
|
|
|
// mostly ported from DeSmuME
|
2019-12-09 09:53:45 +00:00
|
|
|
u8 Read_Flash(u32 addr)
|
|
|
|
{
|
2019-12-09 11:09:30 +00:00
|
|
|
if (SRAMFlash.cmd == 0) // no cmd
|
|
|
|
{
|
|
|
|
return *(u8*)&SRAM[addr + 0x10000 * SRAMFlash.bank];
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (SRAMFlash.cmd)
|
|
|
|
{
|
|
|
|
case 0x90: // chip ID
|
2019-12-09 11:10:26 +00:00
|
|
|
if (addr == 0x0000) return SRAMFlash.manufacturer;
|
|
|
|
if (addr == 0x0001) return SRAMFlash.device;
|
2019-12-09 11:09:30 +00:00
|
|
|
break;
|
|
|
|
case 0xF0: // terminate command (TODO: break if non-Macronix chip and not at the end of an ID call?)
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
SRAMFlash.cmd = 0;
|
|
|
|
break;
|
2019-12-10 14:57:10 +00:00
|
|
|
case 0xA0: // write command
|
|
|
|
break; // ignore here, handled in Write_Flash()
|
2019-12-09 11:09:30 +00:00
|
|
|
case 0xB0: // bank switching (128K only)
|
2019-12-10 14:57:10 +00:00
|
|
|
break; // ignore here, handled in Write_Flash()
|
2019-12-09 11:09:30 +00:00
|
|
|
default:
|
2019-12-09 11:10:26 +00:00
|
|
|
printf("GBACart_SRAM::Read_Flash: unknown command 0x%02X @ 0x%04X\n", SRAMFlash.cmd, addr);
|
2019-12-09 11:09:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-12-09 09:53:45 +00:00
|
|
|
return 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Write_Null(u32 addr, u8 val) {}
|
|
|
|
|
|
|
|
void Write_EEPROM(u32 addr, u8 val)
|
|
|
|
{
|
|
|
|
// TODO: could be used in homebrew?
|
|
|
|
}
|
|
|
|
|
2019-12-10 14:57:10 +00:00
|
|
|
// mostly ported from DeSmuME
|
2019-12-09 09:53:45 +00:00
|
|
|
void Write_Flash(u32 addr, u8 val)
|
|
|
|
{
|
2019-12-09 11:10:26 +00:00
|
|
|
switch (SRAMFlash.state)
|
|
|
|
{
|
|
|
|
case 0x00:
|
|
|
|
if (addr == 0x5555)
|
|
|
|
{
|
|
|
|
if (val == 0xF0)
|
|
|
|
{
|
|
|
|
// reset
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
SRAMFlash.cmd = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (val == 0xAA)
|
|
|
|
{
|
|
|
|
SRAMFlash.state = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (addr == 0x0000)
|
|
|
|
{
|
|
|
|
if (SRAMFlash.cmd == 0xB0)
|
|
|
|
{
|
|
|
|
// bank switching
|
|
|
|
SRAMFlash.bank = val;
|
|
|
|
SRAMFlash.cmd = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0x01:
|
|
|
|
if (addr == 0x2AAA && val == 0x55)
|
|
|
|
{
|
|
|
|
SRAMFlash.state = 2;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
break;
|
|
|
|
case 0x02:
|
|
|
|
if (addr == 0x5555)
|
|
|
|
{
|
|
|
|
// send command
|
|
|
|
switch (val)
|
|
|
|
{
|
|
|
|
case 0x80: // erase
|
|
|
|
SRAMFlash.state = 0x80;
|
|
|
|
break;
|
|
|
|
case 0x90: // chip ID
|
|
|
|
SRAMFlash.state = 0x90;
|
|
|
|
break;
|
|
|
|
case 0xA0: // write
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
SRAMFlash.cmd = val;
|
|
|
|
return;
|
|
|
|
}
|
2019-12-09 12:06:39 +00:00
|
|
|
SRAMFlash.state = 0;
|
2019-12-09 11:10:26 +00:00
|
|
|
break;
|
|
|
|
// erase
|
|
|
|
case 0x80:
|
|
|
|
if (addr == 0x5555 && val == 0xAA)
|
|
|
|
{
|
|
|
|
SRAMFlash.state = 0x81;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
break;
|
|
|
|
case 0x81:
|
|
|
|
if (addr == 0x2AAA && val == 0x55)
|
|
|
|
{
|
|
|
|
SRAMFlash.state = 0x82;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
break;
|
|
|
|
case 0x82:
|
|
|
|
if (val == 0x30)
|
|
|
|
{
|
|
|
|
u32 start_addr = addr + 0x10000 * SRAMFlash.bank;
|
|
|
|
memset((u8*)&SRAM[start_addr], 0xFF, 0x1000);
|
|
|
|
|
2019-12-09 12:06:39 +00:00
|
|
|
if (SRAMFile)
|
2019-12-09 11:10:26 +00:00
|
|
|
{
|
2019-12-09 12:06:39 +00:00
|
|
|
fseek(SRAMFile, start_addr, SEEK_SET);
|
|
|
|
fwrite((u8*)&SRAM[start_addr], 1, 0x1000, SRAMFile);
|
2019-12-09 11:10:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
SRAMFlash.cmd = 0;
|
|
|
|
return;
|
|
|
|
// chip ID
|
|
|
|
case 0x90:
|
|
|
|
if (addr == 0x5555 && val == 0xAA)
|
|
|
|
{
|
|
|
|
SRAMFlash.state = 0x91;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
break;
|
|
|
|
case 0x91:
|
|
|
|
if (addr == 0x2AAA && val == 0x55)
|
|
|
|
{
|
|
|
|
SRAMFlash.state = 0x92;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
break;
|
|
|
|
case 0x92:
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
SRAMFlash.cmd = 0;
|
|
|
|
return;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SRAMFlash.cmd == 0xA0) // write
|
|
|
|
{
|
|
|
|
Write_SRAM(addr + 0x10000 * SRAMFlash.bank, val);
|
|
|
|
SRAMFlash.state = 0;
|
|
|
|
SRAMFlash.cmd = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("GBACart_SRAM::Write_Flash: unknown write 0x%02X @ 0x%04X (state: 0x%02X)\n",
|
|
|
|
val, addr, SRAMFlash.state);
|
2019-12-09 09:53:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Write_SRAM(u32 addr, u8 val)
|
|
|
|
{
|
2019-12-09 12:06:39 +00:00
|
|
|
u8 prev = *(u8*)&SRAM[addr];
|
2019-12-09 09:53:45 +00:00
|
|
|
|
2019-12-09 12:06:39 +00:00
|
|
|
if (prev != val)
|
2019-12-09 09:53:45 +00:00
|
|
|
{
|
2019-12-09 12:06:39 +00:00
|
|
|
*(u8*)&SRAM[addr] = val;
|
|
|
|
|
|
|
|
if (SRAMFile)
|
|
|
|
{
|
|
|
|
fseek(SRAMFile, addr, SEEK_SET);
|
|
|
|
fwrite((u8*)&SRAM[addr], 1, 1, SRAMFile);
|
|
|
|
}
|
2019-12-09 09:53:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
u8 Read8(u32 addr)
|
|
|
|
{
|
|
|
|
if (SRAMType == S_NULL)
|
|
|
|
{
|
|
|
|
return 0xFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SRAMType == S_FLASH512K || SRAMType == S_FLASH1M)
|
|
|
|
{
|
|
|
|
return Read_Flash(addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
return *(u8*)&SRAM[addr];
|
|
|
|
}
|
|
|
|
|
|
|
|
u16 Read16(u32 addr)
|
|
|
|
{
|
|
|
|
if (SRAMType == S_NULL)
|
|
|
|
{
|
|
|
|
return 0xFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SRAMType == S_FLASH512K || SRAMType == S_FLASH1M)
|
|
|
|
{
|
2019-12-09 12:06:39 +00:00
|
|
|
u16 val = Read_Flash(addr + 0) |
|
|
|
|
(Read_Flash(addr + 1) << 8);
|
|
|
|
return val;
|
2019-12-09 09:53:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return *(u16*)&SRAM[addr];
|
|
|
|
}
|
|
|
|
|
|
|
|
u32 Read32(u32 addr)
|
|
|
|
{
|
|
|
|
if (SRAMType == S_NULL)
|
|
|
|
{
|
|
|
|
return 0xFFFFFFFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (SRAMType == S_FLASH512K || SRAMType == S_FLASH1M)
|
|
|
|
{
|
2019-12-09 12:06:39 +00:00
|
|
|
u32 val = Read_Flash(addr + 0) |
|
|
|
|
(Read_Flash(addr + 1) << 8) |
|
|
|
|
(Read_Flash(addr + 2) << 16) |
|
2019-12-09 09:53:45 +00:00
|
|
|
(Read_Flash(addr + 3) << 24);
|
2019-12-09 12:06:39 +00:00
|
|
|
return val;
|
2019-12-09 09:53:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return *(u32*)&SRAM[addr];
|
|
|
|
}
|
|
|
|
|
2019-12-08 22:56:22 +00:00
|
|
|
void Write8(u32 addr, u8 val)
|
|
|
|
{
|
|
|
|
u8 prev = *(u8*)&SRAM[addr];
|
|
|
|
|
2019-12-09 12:06:39 +00:00
|
|
|
WriteFunc(addr, val);
|
2019-12-08 22:56:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Write16(u32 addr, u16 val)
|
|
|
|
{
|
|
|
|
u16 prev = *(u16*)&SRAM[addr];
|
|
|
|
|
2019-12-09 12:06:39 +00:00
|
|
|
WriteFunc(addr + 0, val & 0xFF);
|
|
|
|
WriteFunc(addr + 1, val >> 8 & 0xFF);
|
2019-12-08 22:56:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Write32(u32 addr, u32 val)
|
|
|
|
{
|
|
|
|
u32 prev = *(u32*)&SRAM[addr];
|
|
|
|
|
2019-12-09 12:06:39 +00:00
|
|
|
WriteFunc(addr + 0, val & 0xFF);
|
|
|
|
WriteFunc(addr + 1, val >> 8 & 0xFF);
|
|
|
|
WriteFunc(addr + 2, val >> 16 & 0xFF);
|
|
|
|
WriteFunc(addr + 3, val >> 24 & 0xFF);
|
2019-12-08 22:56:22 +00:00
|
|
|
}
|
|
|
|
|
2019-12-08 18:46:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
namespace GBACart
|
|
|
|
{
|
|
|
|
|
|
|
|
bool CartInserted;
|
|
|
|
u8* CartROM;
|
|
|
|
u32 CartROMSize;
|
|
|
|
u32 CartCRC;
|
|
|
|
u32 CartID;
|
|
|
|
|
|
|
|
|
|
|
|
bool Init()
|
|
|
|
{
|
|
|
|
if (!GBACart_SRAM::Init()) return false;
|
|
|
|
|
|
|
|
CartROM = NULL;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeInit()
|
|
|
|
{
|
|
|
|
if (CartROM) delete[] CartROM;
|
|
|
|
|
|
|
|
GBACart_SRAM::DeInit();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Reset()
|
|
|
|
{
|
|
|
|
CartInserted = false;
|
|
|
|
if (CartROM) delete[] CartROM;
|
|
|
|
CartROM = NULL;
|
|
|
|
CartROMSize = 0;
|
|
|
|
|
|
|
|
GBACart_SRAM::Reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
void DoSavestate(Savestate* file)
|
|
|
|
{
|
|
|
|
// TODO?
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LoadROM(const char* path, const char* sram)
|
|
|
|
{
|
|
|
|
FILE* f = Platform::OpenFile(path, "rb");
|
|
|
|
if (!f)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-12-08 22:13:56 +00:00
|
|
|
if (CartInserted)
|
|
|
|
{
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
|
2019-12-08 18:46:51 +00:00
|
|
|
fseek(f, 0, SEEK_END);
|
|
|
|
u32 len = (u32)ftell(f);
|
|
|
|
|
|
|
|
CartROMSize = 0x200;
|
|
|
|
while (CartROMSize < len)
|
|
|
|
CartROMSize <<= 1;
|
|
|
|
|
|
|
|
u32 gamecode;
|
|
|
|
fseek(f, 0xAC, SEEK_SET);
|
|
|
|
fread(&gamecode, 4, 1, f);
|
|
|
|
printf("Game code: %c%c%c%c\n", gamecode&0xFF, (gamecode>>8)&0xFF, (gamecode>>16)&0xFF, gamecode>>24);
|
|
|
|
|
|
|
|
CartROM = new u8[CartROMSize];
|
|
|
|
memset(CartROM, 0, CartROMSize);
|
|
|
|
fseek(f, 0, SEEK_SET);
|
|
|
|
fread(CartROM, 1, len, f);
|
|
|
|
|
|
|
|
fclose(f);
|
|
|
|
|
|
|
|
CartCRC = CRC32(CartROM, CartROMSize);
|
|
|
|
printf("ROM CRC32: %08X\n", CartCRC);
|
|
|
|
|
|
|
|
CartInserted = true;
|
|
|
|
|
|
|
|
// save
|
|
|
|
printf("Save file: %s\n", sram);
|
|
|
|
GBACart_SRAM::LoadSave(sram);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void RelocateSave(const char* path, bool write)
|
|
|
|
{
|
|
|
|
// derp herp
|
|
|
|
GBACart_SRAM::RelocateSave(path, write);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|