Go to file
2023-08-07 14:30:59 +09:30
ido Initial Commit 2023-02-23 16:02:14 +10:30
include 31.8992% 2023-07-29 23:03:47 +09:30
src Makefile checkpoint 2023-08-07 13:11:05 +09:30
tools Update splat to 0.16.1, small fixes 2023-08-07 14:30:59 +09:30
.gitattributes Initial Commit 2023-02-23 16:02:14 +10:30
.gitignore Merge meaningful symbols into one file 2023-08-01 15:31:50 +09:30
.gitmodules Fix submodules 2023-02-23 16:14:52 +10:30
decompressed.us.yaml Makefile checkpoint 2023-08-07 13:11:05 +09:30
diff.sh Initial Commit 2023-02-23 16:02:14 +10:30
find_first_diff.sh Initial Commit 2023-02-23 16:02:14 +10:30
generate_function_stats.py 31.4080% 2023-07-26 21:26:19 +09:30
LICENSE.md Initial Commit 2023-02-23 16:02:14 +10:30
Makefile Update splat to 0.16.1, small fixes 2023-08-07 14:30:59 +09:30
README.md Some organization 2023-06-12 11:51:25 +09:30
symbol_addrs.us.txt Merge meaningful symbols into one file 2023-08-01 15:31:50 +09:30

donkey

Grab tools

git submodule update --init --recursive

Drop in US as baserom.us.z64 (sha1sum: cf806ff2603640a748fca5026ded28802f1f4a50)

To extract and build everything

make

Build a level or core code section separately (from base of repo):

make <module_id>

where the following are supported values of <module_id>

  • global_asm
  • menu
  • multiplayer
  • minecart
  • bonus
  • race
  • critter
  • boss
  • arcade
  • jetpac

Prerequisites

Ubuntu 18.04 or higher.

sudo apt-get update && \
  sudo apt-get install -y \
    binutils-mips-linux-gnu \
    build-essential \
    gcc-mips-linux-gnu \
    less \
    libglib2.0 \
    python3 \
    python3-pip \
    unzip \
    wget \
    libssl-dev

python3 -m pip install \
    capstone pyyaml pylibyaml pycparser \
    colorama ansiwrap watchdog python-Levenshtein cxxfilt \
    python-ranges \
    pypng anybadge

Other versions

Drop in kiosk, jp, or pal as baserom.<version>.z64 e.g. baserom.kiosk.z64

make VERSION=kiosk