A decompilation of Banjo Kazooie. (MIRROR of https://gitlab.com/banjo.decomp/banjo-kazooie)
Go to file
Banjo Kazooie a229e321f9 cutscenes .data fully defined 2022-11-27 18:56:51 -06:00
asm The first commit 2022-07-15 17:09:41 -05:00
ido/ido5.3_recomp The first commit 2022-07-15 17:09:41 -05:00
include lair .data fully define 2022-11-27 16:25:40 -06:00
progress core2/code_5DBC0.c done 2022-11-27 13:21:33 -06:00
src cutscenes .data fully defined 2022-11-27 18:56:51 -06:00
subyaml core1/code_C4B0.c func_80293F0C() done 2022-11-11 13:11:27 -06:00
tools draw_sprite_ci8() done 2022-11-23 11:57:31 -06:00
.gitignore Removed some unneeded parts of the Makefile, merged symbol_addrs files 2022-11-22 20:53:18 -05:00
.gitmodules remove tools/bk_tools submodule 2022-11-22 20:49:01 -06:00
Dockerfile remove tools/bk_tools submodule 2022-11-22 20:49:01 -06:00
Makefile draw_sprite_ci8() done 2022-11-23 11:56:16 -06:00
README.md core2/code_5DBC0.c done 2022-11-27 13:21:33 -06:00
banjo.jp.yaml The first commit 2022-07-15 17:09:41 -05:00
banjo.pal.yaml The first commit 2022-07-15 17:09:41 -05:00
banjo.us.v10.yaml treat emptyLvl as actual level overlay 2022-11-22 20:30:57 -06:00
banjo.us.v11.yaml The first commit 2022-07-15 17:09:41 -05:00
decompressed.us.v10.yaml cutscenes .data fully defined 2022-11-27 18:56:51 -06:00
diff The first commit 2022-07-15 17:09:41 -05:00
first_diff.py Created inital yaml for decompressed rom, edited makefile to build it and fixed all undefined symbol/multiple definition errors 2022-11-15 20:40:01 -05:00
level_symbols.us.v10.txt The first commit 2022-07-15 17:09:41 -05:00
packages.txt remove tools/bk_tools submodule 2022-11-22 20:49:01 -06:00
remaining core2/code_CD6E0.C done 2022-10-25 21:12:12 -05:00
requirements.txt The first commit 2022-07-15 17:09:41 -05:00
rzip_dummy_addrs.txt treat emptyLvl as actual level overlay 2022-11-22 20:30:57 -06:00
symbol_addrs.us.v10.txt Removed some unneeded parts of the Makefile, merged symbol_addrs files 2022-11-22 20:53:18 -05:00
undefined_syms.libultra.txt Created inital yaml for decompressed rom, edited makefile to build it and fixed all undefined symbol/multiple definition errors 2022-11-15 20:40:01 -05:00
undefined_syms.us.v10.txt Fixed splitting on latest splat by adding exclusive ram IDs to each overlay and IPL3 2022-11-15 20:40:39 -05:00

README.md

banjo (94.6191%)

Building

Grab tools

git submodule update --init --recursive

Drop in US v1.0 as baserom.us.v10.z64 (sha1sum: 1fe1632098865f639e22c11b9a81ee8f29c75d7a)

To extract and build everything

make

where the following are supported values of <module_id>

  • core1
  • core2
  • MM
  • TTC
  • CC
  • BGS
  • FP
  • lair
  • GV
  • CCW
  • RBB
  • MMM
  • SM
  • fight
  • cutscenes

Prerequisites

Ubuntu 18.04 or higher.

sudo apt-get update && sudo apt-get install -y $(cat packages.txt)

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

python3 -m pip install -r requirements.txt

Other versions

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

make VERSION=us.v11