Up until the time of writing,
REINMOON (link down) and
EEPINATOR have been the most widely used tools used to backup savegames from original DS cartridges. However, REINMOON requires a supported slot-2 device, and while EEPINATOR could theoretically be used on a slot-1 device through cart-swapping, this fails on most slot-1 devices. For example, the R4 and M3 Simply do not reinitalize the FAT filesystem until the DS is power cycled, which means that the save file cannot be written to the filesystem, while the DS-Xtreme simply reboots the entire DS upon reinsertion.
However, this is now changing due to a new program that transfers the save file wirelessly to your computer. This program is called
SavSender. Using SavSender, one can backup and restore saves to and from original DS cartridges via Wifi.
EDIT: SavSender appears to only work with games that use save files 256 KB in size or less. For instance, using SavSender with the DS Pokemon games is not recommended. A newer program called Rudolph's NDS Backup Tool is available that can manage save files using either a slot-2 device, a slot-1 device via wifi (very similar to SavSender but using an FTP server), or a slot-2 EZ-Flash 3in1 expansion pack. See the GBATemp download center for these downloads.
The method proposed in this guide, which uses NetCat, is confirmed to work on Windows Vista.
What You Need1. A homebrew device capable of DLDI (read-only is fine)
2. The actual SavSender program itself. Download the DS binary from
http://frodo.dyn.gno.org/~brettk/savsender EDIT: homepage is down, so get v1.1b from the attachment at the end of this post (login required) 3. Netcat - Netcat is a "Swiss Army Knife" utility for reading and writing data across a network. Originating on the UNIX operating system, it has been ported to Windows. Download it from
http://www.vulnwatch.org/netcat/ and copy or move the
nc.exe program to your working folder.
EDIT: link is down, so get it from the attachment at the end of this post (login required)4. knowledge of the command-line and how to navigate through directories using the "cd" command.
5. A DS game cartridge
6. Your DS must already work with other wireless homebrew apps.
--See
this GBAdev thread and
this DS-X wiki article if you need help with this step
Beginning Steps1. Ensure that file extensions are visible by default. In Windows Explorer, go to Tools - Folder Options - "View" tab - uncheck "hide extensions for known filetyes"
2. Patch savsender.nds with the correct DLDI patch for your device and place it on your media card
3. On the root of your media card, create a "DATA" folder if not already present. In this folder, create a "SETTINGS" folder.
4. In this "SETTINGS" folder, create a new text document called "savsender.conf" and open it with Notepad.
5. press Start - Run - type "CMD" and hit Enter - type "IPCONFIG /all" and ht Enter
6. In the savsender.conf file, enter the IP address that ipconfig tells you, press Enter, and type the port number you wish to use. A sample config file may look like this:
192.168.1.123
5000
7. Open your router's settings page and find the section for Port Forwarding. Create a new setting that forwards all traffic on the designated port (in my example, 5000) to your computer's IP address (in my example, 192.168.1.123)
8. Open a command prompt and navigate to the location where nc.exe is. If you don't know how to do this, do the following:
--8.1. Put nc.exe on your desktop
--8.2. press Start - Run - type "cmd" and hit Enter
--8.3. type "cd desktop" and hit Enter
9. Follow the steps below based on whether you wish to dump or restore the save game.
Option A: Dumping Saves1. In the command prompt you just opened, type the following command:
nc.exe -l -p 1234 > savefile.sav
(that's a lowercase L in "-l", not a number 1) where 1234 is the port number you specified in savsender.conf (in my example, 5000) and "savefile.sav" is the name of the file you wish to save as. If your firewall asks you to allow traffic by the program, accept it. Leave this window running even though it looks like it's doing nothing.
2. Put your microSD card in your slot-1 device and boot it up.
3. It will tell you to press A to dump the save file, so swap to the official DS cartridge and then press A.
4. It will automatically detect the save file and send it over Wifi to your computer. Once it says "Done!" you may turn off your DS.
5. Go to the command prompt window that has netcat running and press CTRL+C to kill it if necessary before typing "exit" and hitting Enter.
Option B: Restoring Saves1. In the command prompt you just opened, type the following command:
nc.exe -l -p 1234 < savefile.sav
(that's a lowercase L in "-l", not a number 1) where 1234 is the port number you specified in savsender.conf (in my example, 5000) and "savefile.sav" is the name of the save file you wish to restore to your DS cartridge. If your firewall asks you to allow traffic by the program, accept it. Leave this window running even though it looks like it's doing nothing.
---
note that this looks nearly identical to the command for dumping saves, the only difference being that the > sign is flipped to a < sign2. Put your microSD card in your slot-1 device and boot it up.
3. It will tell you to press B to restore the save file to the DS cart, so swap to the official DS cartridge and then press B.
4. It should connect to your computer and download the "savefile.sav" file, inserting it into the DS game cart. Once it says "Done!" you may turn off your DS.
5. Go to the command prompt window that has netcat running and press CTRL+C to kill it if necessary before typing "exit" and hitting Enter.
Important note regarding restoration: In version 1.0, an older, less reliable method of detecting and dumping the EEPROM was used, and as such it may have produced overdumps, files larger than they need to be. Attempting to restore these overdumps with version 1.1 will give corruption, but by cropping the save file to the size it should be, you can restore it correctly. The use of a hex editor for this is recommended.
ScreenshotsScreenshot #1 - Dumping Mario Kart DS save file to computer using release 1.0

Screenshot #2 - restoring Brain Boost Beta Wave save file to official cartridge using release 1.1
