A Super Mario 64 decompilation, brought to you by a bunch of clever folks.
Go to file
Nadia Holmquist Pedersen ff4c1840df Update readme with relevant build instructions 2021-02-14 18:31:40 -05:00
actors Refresh 13 2020-12-03 14:26:38 -05:00
asm Refresh 13 2 2020-12-03 20:57:48 -05:00
assets Refresh 13 2020-12-03 14:26:38 -05:00
bin Refresh 13 2020-12-03 14:26:38 -05:00
data Refresh 13 2020-12-03 14:26:38 -05:00
doxygen init2 2019-08-25 00:46:40 -04:00
enhancements Refresh 13 2020-12-03 14:26:38 -05:00
include Refresh 13 2020-12-03 14:26:38 -05:00
levels Refresh 13 2020-12-03 14:26:38 -05:00
lib Refresh 13 2020-12-03 14:26:38 -05:00
rsp Refresh 13 2020-12-03 14:26:38 -05:00
sound Initial DS(i) port, take 2 2021-02-12 18:49:55 -05:00
src Workaround for unsupported texture sizes 2021-02-13 23:25:34 -05:00
text Refresh 13 2020-12-03 14:26:38 -05:00
tools Refresh 13 2020-12-03 14:26:38 -05:00
.clang-format Refresh 1 2019-09-01 15:50:50 -04:00
.clang-tidy Refresh 1 2019-09-01 15:50:50 -04:00
.gitattributes Refresh 1 2019-09-01 15:50:50 -04:00
.gitignore init2 2019-08-25 00:46:40 -04:00
CHANGES Refresh 13 2 2020-12-03 20:57:48 -05:00
Dockerfile Refresh 13 2020-12-03 14:26:38 -05:00
Doxyfile refresh 4 2019-12-01 21:52:53 -05:00
Jenkinsfile Refresh 13 2020-12-03 14:26:38 -05:00
Makefile Initial DS(i) port, take 2 2021-02-12 18:49:55 -05:00
Makefile.split Refresh 13 2020-12-03 14:26:38 -05:00
README.md Update readme with relevant build instructions 2021-02-14 18:31:40 -05:00
assets.json Refresh 13 2020-12-03 14:26:38 -05:00
charmap.txt refresh 5 2020-01-03 10:38:57 -05:00
charmap_menu.txt refresh 5 2020-01-03 10:38:57 -05:00
diff.py Refresh 13 2020-12-03 14:26:38 -05:00
diff_settings.py Refresh 13 2020-12-03 14:26:38 -05:00
extract_assets.py Refresh 13 2020-12-03 14:26:38 -05:00
first-diff.py Refresh 13 2020-12-03 14:26:38 -05:00
format.sh init2 2019-08-25 00:46:40 -04:00
rename_sym.sh Refresh 13 2020-12-03 14:26:38 -05:00
sm64.eu.sha1 init2 2019-08-25 00:46:40 -04:00
sm64.jp.sha1 init2 2019-08-25 00:46:40 -04:00
sm64.ld Refresh 13 2020-12-03 14:26:38 -05:00
sm64.sh.sha1 Refresh 7 2020-03-01 22:42:52 -05:00
sm64.us.sha1 init2 2019-08-25 00:46:40 -04:00
undefined_syms.txt Refresh 13 2020-12-03 14:26:38 -05:00
util.mk Refresh 13 2020-12-03 14:26:38 -05:00

README.md

Super Mario 64 (1996) for Nintendo DSi

  • This repo contains a full decompilation of Super Mario 64 (J), (U), (E), and (SH), ported to the Nintendo DSi.
  • Naming and documentation of the source code and data structures are in progress.

This repo does not include all assets necessary for compiling the ROMs. A prior copy of the game is required to extract the assets.

Installation

  • First follow the guide for installing devkitPro packages, also installing the nds-dev group as mentioned
  • Install the needed tools
    • Debian/Ubuntu: sudo apt install -y build-essential git python
    • Fedora: sudo dnf install make git python
    • Arch/derivatives like Manjaro: sudo pacman -S base-devel git python
    • Windows with MSYS2: pacman -S make git python
  • Clone this repository and change to its directory
    git clone https://github.com/Hydr8gon/sm64.git
    cd sm64
    
  • Place a copy of the USA version of Super Mario 64 in this directory, named baserom.us.z64, it should be in the same directory as Makefile.
  • Run make -j$(nproc) to build the game
  • If the build succeeded, the game will be in build/us_nds, named sm64.us.nds

Project Structure

sm64
├── actors: object behaviors, geo layout, and display lists
├── asm: handwritten assembly code, rom header
│   └── non_matchings: asm for non-matching sections
├── assets: animation and demo data
│   ├── anims: animation data
│   └── demos: demo data
├── bin: C files for ordering display lists and textures
├── build: output directory
├── data: behavior scripts, misc. data
├── doxygen: documentation infrastructure
├── enhancements: example source modifications
├── include: header files
├── levels: level scripts, geo layout, and display lists
├── lib: SDK library code
├── rsp: audio and Fast3D RSP assembly code
├── sound: sequences, sound samples, and sound banks
├── src: C source code for game
│   ├── audio: audio code
│   ├── buffers: stacks, heaps, and task buffers
│   ├── engine: script processing engines and utils
│   ├── game: behaviors and rest of game source
│   ├── goddard: Mario intro screen
│   ├── menu: title screen and file, act, and debug level selection menus
|   └── nds: Nintendo DS-specific code
├── text: dialog, level names, act names
├── textures: skybox and generic texture data
└── tools: build tools

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Run clang-format on your code to ensure it meets the project's coding standards.

Official Discord for the original decomp: discord.gg/DuYH3Fh