├── .clang-format ├── .clang-tidy ├── .github └── workflows │ ├── merge.yml │ └── release.yml ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── compile_flags.txt ├── include ├── .clang-format ├── .clang-tidy └── ezOptionParser │ ├── MIT-LICENSE │ ├── README.md │ └── ezOptionParser.hpp ├── src ├── sfcRom.cpp ├── sfcRom.hpp └── superfamicheck.cpp └── test ├── CMakeLists.txt ├── Makefile ├── data └── public │ ├── rom0.sfc │ └── rom1.sfc └── test.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/workflows/merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/.github/workflows/merge.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | build 3 | test/data/private 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/README.md -------------------------------------------------------------------------------- /compile_flags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/compile_flags.txt -------------------------------------------------------------------------------- /include/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | "DisableFormat": true 3 | -------------------------------------------------------------------------------- /include/.clang-tidy: -------------------------------------------------------------------------------- 1 | Checks: '' 2 | -------------------------------------------------------------------------------- /include/ezOptionParser/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/include/ezOptionParser/MIT-LICENSE -------------------------------------------------------------------------------- /include/ezOptionParser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/include/ezOptionParser/README.md -------------------------------------------------------------------------------- /include/ezOptionParser/ezOptionParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/include/ezOptionParser/ezOptionParser.hpp -------------------------------------------------------------------------------- /src/sfcRom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/src/sfcRom.cpp -------------------------------------------------------------------------------- /src/sfcRom.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/src/sfcRom.hpp -------------------------------------------------------------------------------- /src/superfamicheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/src/superfamicheck.cpp -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/data/public/rom0.sfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/test/data/public/rom0.sfc -------------------------------------------------------------------------------- /test/data/public/rom1.sfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/test/data/public/rom1.sfc -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Optiroc/SuperFamicheck/HEAD/test/test.cpp --------------------------------------------------------------------------------