Skip to content

Instantly share code, notes, and snippets.

@lazd
Last active July 9, 2021 18:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lazd/19cbff2f442fc5c245928dec987ffe22 to your computer and use it in GitHub Desktop.
Save lazd/19cbff2f442fc5c245928dec987ffe22 to your computer and use it in GitHub Desktop.
Convert Nintendo 64 .eep to .srm
#!/bin/sh
# Usage: ./eep2srm "Goldeneye 007.eed" "Goldeneye 007.srm"
# Make sure the script is executable: chmod +x eep2srm.sh
dd if=/dev/zero bs=296960 count=1 of="$2"
dd if="$1" bs=2048 count=1 conv=notrunc of="$2"
echo "Done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment