diff options
author | Raphaël Zumer <rzumer@tebako.net> | 2019-12-09 06:09:30 -0500 |
---|---|---|
committer | Raphaël Zumer <rzumer@tebako.net> | 2019-12-09 06:09:30 -0500 |
commit | 4e8b0c8ce451bc11de8b11b4da14a24242c8c34e (patch) | |
tree | f2fda4902705c3c1c0505cf59f1b0a43ccea94ab /src | |
parent | 5ad85f15c1858108665329fada39d67edc408b39 (diff) |
Eject GBA cartridges on stop from the UI
Diffstat (limited to 'src')
-rw-r--r-- | src/GBACart.cpp | 31 | ||||
-rw-r--r-- | src/libui_sdl/main.cpp | 3 |
2 files changed, 30 insertions, 4 deletions
diff --git a/src/GBACart.cpp b/src/GBACart.cpp index 937958c..a0483b1 100644 --- a/src/GBACart.cpp +++ b/src/GBACart.cpp @@ -145,9 +145,9 @@ void LoadSave(const char* path) }
else if (SRAMType == S_FLASH1M)
{
- // Macronix 128K chip
- SRAMFlash.device = 0x09;
- SRAMFlash.manufacturer = 0xC2;
+ // Sanyo 128K chip
+ SRAMFlash.device = 0x13;
+ SRAMFlash.manufacturer = 0x62;
}
}
@@ -175,7 +175,30 @@ void RelocateSave(const char* path, bool write) u8 Read_Flash(u32 addr)
{
- // TODO: pokemen
+ if (SRAMFlash.cmd == 0) // no cmd
+ {
+ return *(u8*)&SRAM[addr + 0x10000 * SRAMFlash.bank];
+ }
+
+ // TODO properly keep track of command sequences,
+ // and deny unauthorized writes
+ switch (SRAMFlash.cmd)
+ {
+ case 0x90: // chip ID
+ if (addr == 0x0A000000) return SRAMFlash.manufacturer;
+ if (addr == 0x0A000001) return SRAMFlash.device;
+ 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;
+ case 0xB0: // bank switching (128K only)
+ break; // we don't track the request for now
+ default:
+ printf("GBACart_SRAM::Read_Flash: unknown command 0x%02X @ 0x%08X\n", SRAMFlash.cmd, addr);
+ break;
+ }
+
return 0xFF;
}
diff --git a/src/libui_sdl/main.cpp b/src/libui_sdl/main.cpp index 1e6069e..31b0488 100644 --- a/src/libui_sdl/main.cpp +++ b/src/libui_sdl/main.cpp @@ -1674,6 +1674,9 @@ void Stop(bool internal) while (EmuStatus != 2); RunningSomething = false; + // eject any inserted GBA cartridge + ROMPath[1][0] = '\0'; + uiWindowSetTitle(MainWindow, "melonDS " MELONDS_VERSION); for (int i = 0; i < 9; i++) uiMenuItemDisable(MenuItem_SaveStateSlot[i]); |