all repos — nds-converter @ c49ad1e5149c8ebc9941e186f50cbcef737a4732

A lightweight save converter for NDS and DeSmuME.

README.md (view raw)

 1# nds-converter
 2
 3## What is it?
 4A lightweight API-first tool to convert NDS save files (`.sav`) to and from the DeSmuME format (`.dsv`).
 5
 6## How do I use it?
 7First, you need a save file, either of the two formats will work.
 8Then, you can just use `curl`:
 9
10```
11curl localhost:1111 -F file=@savefile.sav > savefile.dsv
12```
13
14The conversion works both ways.
15```
16curl localhost:1111 -F file=@savefile.dsv > savefile.sav
17```