all repos — nds-converter @ 5b5911dcfac31e65d6c727444b88c5f700ca4ee3

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 https://nds.birabittoh.duckdns.org/ -F file=@savefile.sav > savefile.dsv
12```
13
14The conversion works both ways.
15```
16curl https://nds.birabittoh.duckdns.org/ -F file=@savefile.dsv > savefile.sav
17```