Snowboard Kids 2 is 100% Decompiled

Hacker News Top Tools

Summary

The author announces that Snowboard Kids 2 for the Nintendo 64 has been fully decompiled, meaning all functions now have matching C implementations that compile to the original assembly. The project took nearly two years and credits both the N64 decompilation community and AI coding agents (Claude, GLM, Codex) for acceleration.

No content available
Original Article
View Cached Full Text

Cached at: 05/30/26, 01:22 AM

# Snowboard Kids 2 is 100% Decompiled Source: [https://blog.chrislewis.au/snowboard-kids-2-is-100-decompiled/](https://blog.chrislewis.au/snowboard-kids-2-is-100-decompiled/) I’m very pleased to announce that*Snowboard Kids 2*is 100% decompiled\! All of the game’s functions have now been implemented in C and compile to assembly that matches the original game\. There’s still some occasional`\_\_asm\_\_`hackery,[1](https://blog.chrislewis.au/snowboard-kids-2-is-100-decompiled/#fn:1)and plenty of code needs better names and documentation, but every function now has a matching C implementation\. That matters because a matching decompilation turns the game from a pile of MIPS assembly into a codebase we can read, build, study, and modify\. It should help with recompilation, asset extraction, modding, and generally understanding the mechanics of the N64’s greatest game\. [![screenshot of the decomp.dev Snowboard Kids 2 decompilation report](https://blog.chrislewis.au/snowboardkids2-decomp-report.svg)](https://decomp.dev/cdlewis/snowboardkids2-decomp) [Snowboard Kids 2 decompilation report from decomp\.dev\. Boxes represent different files\.](https://decomp.dev/cdlewis/snowboardkids2-decomp) ## The journey This project has been a little under two years in the making, with the[first commit](https://github.com/cdlewis/snowboardkids2-decomp/commit/f1025d16a8aa1d11ec937f8c721af59149feee7c)landing in September 2024\. The circumstances surrounding the final matches were not quite what I expected when I started\. I’m currently sitting in hospital with my newborn daughter\. She’s doing fine, but needs some help eating\. Decompilation has been a useful distraction and an enjoyable way to fill the quiet hours\. ![photo of me in the hospital with my daughter](https://blog.chrislewis.au/hospital.webp) The path to decompiling any game, let alone a Nintendo 64 game, is not especially well documented\. This project would not have been possible without the N64 decompilation Discord community, whose members have been incredibly generous with their time\. I would particularly like to thank[Bl00D4NGEL](https://github.com/Bl00D4NGEL),[inspectredc](https://github.com/inspectredc),[SlaveOfIDO](https://github.com/SlaveOfIDO), and[queueRAM](https://github.com/queueRAM)for their significant contributions to the project, especially across the final ten functions\. ![screenshot of the decomp.dev Snowboard Kids 2 leaderboard](https://blog.chrislewis.au/leaderboard.webp) Leaderboard shared on discord for tracking work on the remaining Snowboard Kids 2 functions\. The community was more important than any model: people answered my dumb questions, explained tooling, and decompiled functions themselves\. With that said, coding agents also greatly accelerated the decompilation effort, particularly Claude, GLM, and Codex\. I don’t want to turn this into another AI blog post[2](https://blog.chrislewis.au/snowboard-kids-2-is-100-decompiled/#fn:2), but I do have a couple of observations: 1. Based on my experience with the final ten functions, which were among the most difficult, the most effective model appeared to be Codex 5\.5 xhigh\. Historically Claude was more effective, and I expect this to keep changing, perhaps even by the time you read this\. 2. Frontier models are now very effective at decompilation, but this comes at a cost\. GLM has probably been the best value for money for this specific kind of work\. If you want to try coding agents on your own decompilation project but are put off by high subscription fees, that is where I would start\. ## What next? Reaching 100% decompilation was not technically blocking the recompilation effort, but it was more interesting to me personally\. With the decompilation finished, my next goal is to release a high\-quality recompilation of*Snowboard Kids 2*\. That’s already in a pretty good state thanks to help from[sonicdcer](https://github.com/sonicdcer)and[DarioSamo](https://github.com/DarioSamo), but there are still bugs to squash before I’m comfortable releasing it\. ![screenshot of an alpha version of Snowboard Kids 2: Recompiled](https://blog.chrislewis.au/sbk2-recompiled-screenshot.webp) Screenshot from Snowboard Kids 2: Recompiled\. Note the use of widescreen and expanded draw distance\. This can lead to some visual quirks\. There’s also plenty of work left to do in the decompilation project itself\. A 100% match doesn’t mean the source is perfectly understood\. Many functions still have generated names, many structures need to be cleaned up, and graphics/audio assets are still mostly treated as binary blobs\. The project is now in a much better place for that work, but the work still needs doing\. Finally, I’m interested in starting a*Snowboard Kids*1 decompilation\. I think it would be very cool to have a ‘Super Snowboard Kids’[3](https://blog.chrislewis.au/snowboard-kids-2-is-100-decompiled/#fn:3)that combines both games and allows you to play all the original tracks on the second game’s more modern engine\. I have no idea how feasible that ultimately is, but it’s a fun thing to think about\. If you’ve made it this far, you probably have an interest in decompilation and*Snowboard Kids 2*\. Take a look at the[Snowboard Kids 2 decompilation project](https://github.com/cdlewis/snowboardkids2-decomp)\. The README includes a list of good first tasks\. **You can also[follow me on Bluesky](https://bsky.app/profile/chrislewis.au)for more Snowboard Kids 2 updates\.**

Similar Articles

What are you doing this weekend?

Lobsters Hottest

A developer describes porting Perfect Dark 64 levels to noclip.website, highlighting the challenges of reading N64 display lists and reimplementing the rendering engine.

Soul Player C64 – A real transformer running on a 1 MHz Commodore 64

Hacker News Top

Soul Player C64 implements a real 2-layer decoder-only transformer with ~25,000 int8 parameters in hand-written 6502/6510 assembly, running entirely on an unmodified 1 MHz Commodore 64 loaded from a floppy disk. The project includes training scripts to build and quantize custom models, assemble C64 binaries, and run inference at roughly 60 seconds per token.

Emulator Debugging: Area 5150's Lake Effect

Lobsters Hottest

The article details the debugging process for the 'Lake' effect in the Area5150 demo on the MartyPC emulator, explaining the need for a title-specific hack and the subsequent fix using bus sniffing and dynamic clocking to achieve cycle-accurate CGA emulation.

WinCE64 – Windows CE 2.11 for N64

Hacker News Top

A hobby project that ports Windows CE 2.11 to run on real Nintendo 64 hardware, using a custom HAL and drivers, with full desktop and sound support.