https://github.com/ethteck/splat
A binary splitting tool to assist with decompilation and modding projects
https://github.com/ethteck/splat
decompilation n64 python3
Last synced: 10 months ago
JSON representation
A binary splitting tool to assist with decompilation and modding projects
- Host: GitHub
- URL: https://github.com/ethteck/splat
- Owner: ethteck
- License: mit
- Created: 2020-08-03T23:03:46.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-29T03:33:49.000Z (11 months ago)
- Last Synced: 2025-04-29T04:35:28.648Z (11 months ago)
- Topics: decompilation, n64, python3
- Language: Python
- Homepage:
- Size: 1.1 MB
- Stars: 218
- Watchers: 9
- Forks: 43
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-n64-development - splat - A ROM splitting tool to assist with decompilation and modding projects (Tools and Libraries / ROM Manipulation)
- awesome-game-file-format-reversing - splat - Binary splitting tool to assist with decompilation and modding projects. (🛠️ General Tools / 🔬 Format Analysis & Reverse Engineering)
README
# splat
[](https://pypi.org/project/splat64/)
A binary splitting tool to assist with decompilation and modding projects
Currently, only N64, PSX, PS2 and PSP binaries are supported. More platforms may come in the future.
Please check out the [wiki](https://github.com/ethteck/splat/wiki) for more information including [examples](https://github.com/ethteck/splat/wiki/Examples) of projects that use splat.
## Installing
The recommended way to install is using from the PyPi release, via `pip`:
```bash
python3 -m pip install -U splat64[mips]
```
The brackets corresponds to the optional dependencies to install while installing splat. Refer to [Optional dependencies](#optional-dependencies) to see the list of available groups.
If you use a `requirements.txt` file in your repository, then you can add this library with the following line:
```txt
splat64[mips]>=0.33.2,<1.0.0
```
### Optional dependencies
- `mips`: Required when using the N64, PSX, PS2 or PSP platforms.
- `dev`: Installs all the available dependencies groups and other packages for development.
### Gamecube / Wii
For Gamecube / Wii projects, see [decomp-toolkit](https://github.com/encounter/decomp-toolkit)!