Skip to content

Instantly share code, notes, and snippets.

@dually8
Created November 23, 2021 04:10
Show Gist options
  • Save dually8/47f92cf0908276cd5f45de48b138dd08 to your computer and use it in GitHub Desktop.
Save dually8/47f92cf0908276cd5f45de48b138dd08 to your computer and use it in GitHub Desktop.
Converting N64 Save Dumps

Converting N64 Save Dumps

How to convert N64 saves dumped from a Retrode2 with N64 plugin.

Software

  • pj64tosrm
    • Usage: pj64tosrm_64bit.exe /path/to/file
  • saveswap
    • Usage: python saveswap.py /path/to/file

Save Types

EEPROM

This is the easiest. Take the .eep file and run it through pj64tosrm. Take the .srm file and place it in the proper directory.

Example:

pj64tosrm_64bit.exe Banjo-kazooie.NBKE.eep

Outputs:

Banjo-kazooie.NBKE.srm

SRA

First, run this through saveswap, then run it through pj64tosrm.

Example:

python saveswap.py TheLegendOfZelda.CZLE.sra
pj64tosrm_64bit.exe TheLegendOfZelda.CZLE.sra

Outputs:

TheLegendOfZelda.CZLE.srm

FLA

First, run this through saveswap, then run it through pj64tosrm.

Example:

python saveswap.py JetForceGemini.NJFE.fla
pj64tosrm_64bit.exe JetForceGemini.NJFE.fla

Outputs:

JetForceGemini.NJFE.srm

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment