Tell me more ×
Arqade is a question and answer site for passionate videogamers on all platforms. It's 100% free, no registration required.

Is it at all possible to save a state in a game for older consoles? I'm talking about old school game consoles like NES, SNES and Sega MegaDrive.

I know it's not built in, so maybe somebody knows of some kind of add-box, or something to put between the cartridge and the console to record the game progress or something like that..?

It would really help me finish certain older games.

share|improve this question
why was this flagged down..? Do you think I didn't put in enough effort doing research..? :s I did already look for an answer to this, but never found one. I know of ways to put roms on custom cartridges, but that'd cost me a lot and is not the way I want it to work. I want it to work with the games I have here on my shelves.. – dreagan May 2 '12 at 7:52
Emulators, emulators, emulators, emulators. – kotekzot May 2 '12 at 12:35
@kotekzot, emulators are actually on-topic here, even though this question is specifically asking about game hardware. – agent86 May 2 '12 at 13:29

2 Answers

up vote 7 down vote accepted

There's not a hardware device that would sit between a console and it's cartridge to record the game's state, and that's because it wouldn't be able to do this task.

The cartridges hold the game's code, commonly burned into memory chips called ROMs. Cheat devices like the Game Genie or Action Replay sit between the console and these chips, and replace or patch the code on the chip as the console requests it. Therefore, it's possible to change the way the game executes in real time.

For example, when you get hit in The Legend of Zelda, there's a bit of code that executes which takes your current life (stored in a memory cell) and subtracts one from it. Instead of subtracting one heart, the cheat device might change the code so that the "subtract one from life" instruction is never executed. This would make you effectively invincible.

Saving state is done by copying the current contents of memory/registers into a file, and then loading that file again later. The console's memory is not part of the cartridge. Therefore, this can't be done by capturing the data coming off the cartridge - you'd have to open the case, and solder down something that is capable of reading the contents of the console's memory, and allow it to be restored later. This is a complicated process, and would likely be hard to get right.

Saving state is a common feature of emulators, however. Emulators set up an environment inside your PC where the entire CPU, memory, audio/video chips, etc are all simulated. Since they're simulated, capturing data at any point in the process is fairly simple. Older generation consoles had a tiny amount of memory compared to your PC, so saving and loading many different iterations of the current game state is simple and not very taxing.

share|improve this answer
too bad, will have to keep trying then I guess.. Thanks for the explanation! – dreagan May 2 '12 at 13:44

Actually, the PowerPak -- basically a flash cart for the NES -- does have the ability to take savestates, with a certain set of mappers: http://kkfos.aspekt.fi/projects/nes/powerpak/save-state-mappers/

It is not currently possible for the other ones, that I know of, however.

share|improve this answer
1  
expensive, but spot on. – dreagan May 31 '12 at 6:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.