Overall cleanup.

This commit is contained in:
NewRisingSun
2025-09-12 21:59:27 +02:00
parent 19e357c040
commit db279aa338
86 changed files with 476 additions and 476 deletions

View File

@@ -36,25 +36,25 @@ static void sync () {
VRC24_syncMirror();
}
DECLFR(UNLT230_readEEPROM) {
static DECLFR (readEEPROM) {
return eeprom_93Cx6_read()? 0x01: 0x00;
}
DECLFW(UNLT230_writeEEPROM) {
static DECLFW (writeEEPROM) {
eeprom_93Cx6_write(A &0x04, A &0x02, A &0x01);
}
void UNLT230_power (void) {
static void power (void) {
VRC24_power();
eeprom_93Cx6_init(256, 16);
SetReadHandler(0x5000, 0x5FFF, UNLT230_readEEPROM);
SetWriteHandler(0xF800, 0xFFFF, UNLT230_writeEEPROM);
SetReadHandler(0x5000, 0x5FFF, readEEPROM);
SetWriteHandler(0xF800, 0xFFFF, writeEEPROM);
}
void UNLT230_Init (CartInfo *info) {
VRC4_init(info, sync, 0x04, 0x08, 1, NULL, NULL, NULL, NULL, NULL);
if (info->PRGRamSaveSize) {
info->Power =UNLT230_power;
info->Power =power;
AddExState(stateRegs, ~0, 0, 0);
eeprom_93Cx6_storage = eeprom_data;
info->battery = 1;