https://github.com/cdlewis/snowboardkids2-decomp
Decompilation of snowboard kids 2 (N64)
https://github.com/cdlewis/snowboardkids2-decomp
c decomp decompilation mips-assembly n64 n64-dev reverse-engineering
Last synced: about 1 month ago
JSON representation
Decompilation of snowboard kids 2 (N64)
- Host: GitHub
- URL: https://github.com/cdlewis/snowboardkids2-decomp
- Owner: cdlewis
- Created: 2024-09-28T21:52:21.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-19T03:48:13.000Z (about 2 months ago)
- Last Synced: 2026-01-19T12:51:14.301Z (about 2 months ago)
- Topics: c, decomp, decompilation, mips-assembly, n64, n64-dev, reverse-engineering
- Language: C
- Homepage: https://decomp.dev/cdlewis/snowboardkids2-decomp
- Size: 12.7 MB
- Stars: 66
- Watchers: 4
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Agents: AGENTS.md
Awesome Lists containing this project
- awesome-n64-development - Snowboard Kids 2 - An in-progress decompilation of _Snowboard Kids 2_ (Reverse Engineering / Projects)
- awesome-game-file-format-reversing - snowboardkids2-decomp (decomp) - Matching decompilation of Snowboard Kids 2 (N64). (Game & Studio Tools / Nintendo EAD)
- awesome-game-decompilations - Snowboard Kids 2
README
Snowboard Kids 2
[](https://github.com/cdlewis/snowboardkids2-decomp/actions/workflows/build.yaml)
[](https://decomp.dev/cdlewis/snowboardkids2-decomp)
[](https://decomp.dev/cdlewis/snowboardkids2-decomp)
[](https://discord.gg/DuYH3Fh)
=============

A (very much) work-in-progress matching decompilation of the greatest N64 game ever made, [Snowboard Kids 2](https://en.wikipedia.org/wiki/Snowboard_Kids_2).
**This repository does not contain any game assets or assembly whatsoever. An existing copy of the game is required. This project is not a port, to PC or any other platform. It takes a Nintendo 64 rom, extracts assets from it, and combines them with C code we reverse-engineered from the rom, to produce an identical rom. It is explicitly a non-goal for this project to be used for any commercial purpose.**
## Cloning
Clone this repository, including its submodules:
```
git clone --recurse-submodules -j8 git@github.com:cdlewis/snowboardkids2-decomp.git
```
# Dependencies
This project has been tested on Ubuntu (x86). Your milege may vary on other systems.
System packages:
* make
* git
* docker
* python3
* pip3
* binutils-mips-linux-gnu
Build tools:
```bash
make setup
```
Build Python dependencies:
```bash
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install -U -r requirements.txt
```
## Building
Copy your big-endian Snowboard Kids 2 rom into the root of the repository. Rename it to `snowboardkids2.z64`. Then run:
```bash
make clean
make extract
make
```
If everything works correctly you should see:
```bash
build/snowboardkids2.z64: OK
```
Contributing
============
Contributions are most welcome! Feel free to pick a function and open a PR. If you have any additional questions, please reach out on Discord (linked in the header). However please note that, since this is a clean room decompilation, we cannot accept contributions based on leaked source code or from those with proprietary knowledge about the game or related subjects.
Acknowledgements
================
This project wouldn’t be possible without the collective knowledge, tools, and support of the broader decompilation community. Huge thanks to contributors of other N64 decomp projects, the teams behind [decomp.me](https://decomp.me/) and [decomp.dev](https://decomp.dev/), and the incredibly helpful discussions happening on Discord. These resources have been invaluable for solving problems, speeding up setup, and staying motivated throughout the process.