https://github.com/optiroc/superfamicheck
Simple Super Nintendo ROM image inspection utility
https://github.com/optiroc/superfamicheck
Last synced: 11 months ago
JSON representation
Simple Super Nintendo ROM image inspection utility
- Host: GitHub
- URL: https://github.com/optiroc/superfamicheck
- Owner: Optiroc
- License: mit
- Created: 2016-01-10T17:19:09.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-03-20T18:42:35.000Z (about 2 years ago)
- Last Synced: 2025-04-05T05:24:05.523Z (about 1 year ago)
- Language: C++
- Size: 81.1 KB
- Stars: 28
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# superfamicheck
superfamicheck is a simple command line utility that shows (and optionally fixes) header info for super nintendo / super famicom ROM images.
superfamicheck is programmed by David Lindecrantz and distributed under the terms of the [MIT license](./LICENSE).
## building
use cmake to generate a build environment, or simply type `make` which will run cmake for you.
## operation
superfamicheck rom_file [options...]
the following options are available:
-h, --help show usage instructions
-o, --out FILE specify file to write (if -f)
-f, --fix fix header (checksum/title/size)
-s, --semisilent silent operation (unless issues found)
-S, --silent silent operation
show info for file rom.sfc:
superfamicheck rom.sfc
show info for file rom.sfc and fix header (replacing source file):
superfamicheck rom.sfc -f
show info for file rom.sfc and write fixed ROM image to specified file:
superfamicheck rom.sfc -f -o fixed.sfc
## acknowledgments
superfamicheck uses the following libraries:
* [ezOptionParser](http://ezoptionparser.sourceforge.net) by remik ziemlinski