├── .gitignore ├── Makefile ├── TODO.md ├── _info.txt ├── autodiff ├── autopermute ├── hdiff ├── hdiffc ├── include ├── 2.0L │ ├── PR │ │ ├── PRimage.h │ │ ├── R4300.h │ │ ├── abi.h │ │ ├── gbi.h │ │ ├── gs2dex.h │ │ ├── gt.h │ │ ├── gu.h │ │ ├── leo.h │ │ ├── leoappli.h │ │ ├── libaudio.h │ │ ├── mbi.h │ │ ├── n_abi.h │ │ ├── n_libaudio.h │ │ ├── n_libaudio_s_to_n.h │ │ ├── os.h │ │ ├── os_ai.h │ │ ├── os_cache.h │ │ ├── os_cont.h │ │ ├── os_convert.h │ │ ├── os_debug.h │ │ ├── os_eeprom.h │ │ ├── os_error.h │ │ ├── os_exception.h │ │ ├── os_flash.h │ │ ├── os_gbpak.h │ │ ├── os_gio.h │ │ ├── os_host.h │ │ ├── os_internal.h │ │ ├── os_internal_debug.h │ │ ├── os_internal_error.h │ │ ├── os_internal_exception.h │ │ ├── os_internal_gio.h │ │ ├── os_internal_host.h │ │ ├── os_internal_reg.h │ │ ├── os_internal_rsp.h │ │ ├── os_internal_si.h │ │ ├── os_internal_thread.h │ │ ├── os_internal_tlb.h │ │ ├── os_libc.h │ │ ├── os_message.h │ │ ├── os_motor.h │ │ ├── os_pfs.h │ │ ├── os_pi.h │ │ ├── os_rdp.h │ │ ├── os_reg.h │ │ ├── os_rsp.h │ │ ├── os_si.h │ │ ├── os_system.h │ │ ├── os_thread.h │ │ ├── os_time.h │ │ ├── os_tlb.h │ │ ├── os_version.h │ │ ├── os_vi.h │ │ ├── os_voice.h │ │ ├── ramrom.h │ │ ├── rcp.h │ │ ├── rdb.h │ │ ├── region.h │ │ ├── rmon.h │ │ ├── sched.h │ │ ├── sp.h │ │ ├── sptask.h │ │ ├── ucode.h │ │ ├── ucode_debug.h │ │ ├── ultraerror.h │ │ ├── ultralog.h │ │ ├── ultratypes.h │ │ └── uportals.h │ ├── assert.h │ └── ultra64.h ├── bootcode_cipher.h ├── dlls.h ├── enum │ ├── asset.h │ ├── behaviour.h │ ├── flag.h │ ├── item.h │ ├── map.h │ ├── minigame.h │ └── music.h ├── functions.h ├── hacks │ ├── cheatcipher_end.h │ ├── cheatcipher_start.h │ └── helpers.h ├── struct │ ├── music.h │ ├── object.h │ └── player.h ├── types.h └── variables.h ├── manager ├── clean.js ├── dllmgr.js ├── enum │ ├── _info.txt │ ├── calltableoffset │ │ ├── aus.txt │ │ ├── eur.txt │ │ ├── jpn.txt │ │ └── usa.txt │ ├── disasm_start_addrs.txt │ └── syscallidx.txt ├── package-lock.json ├── package.json ├── sym_autogen.js └── watches │ └── _info.txt ├── scripts ├── dll_cothemedll_arrgen │ └── a.js ├── dll_gcintrotext_arrgen │ ├── a.js │ ├── b.js │ ├── c.js │ ├── out_a.txt │ ├── out_b.txt │ └── out_c.txt ├── dll_h_comments_gen │ ├── a.js │ └── dlls.txt └── generic_arrgen │ ├── ENUM │ ├── BCCI.json │ ├── MAP.json │ └── MUSIC.json │ ├── arrgen.js │ ├── readme.txt │ └── runs │ └── _example.txt ├── src └── dlls │ ├── badronemem.c │ ├── bamoveledge.c │ ├── bastatemem.c │ ├── chcoderoombits.c │ ├── chlavaarchgrillswitch.c │ ├── chmrtannoy.c │ ├── cosection.c │ ├── cothemedll.c │ ├── dbpalette.c │ ├── dbvtxnormal.c │ ├── fxkern.c │ ├── gcegg.c │ ├── gcextra.c │ ├── gcgamefix.c │ ├── gcintrotext.c │ ├── gcwater.c │ ├── glcrc.c │ ├── glgamestore.c │ ├── glglobaldata.c │ ├── glglobalsettings.c │ ├── glhittableDll.c │ ├── glreflight.c │ ├── gzpublic.c │ ├── gzreg.c │ ├── gzthread.c │ └── sujiggy.c ├── tmp ├── Untitled-1.txt ├── dll_gzip_cpy.sh └── splat_bk_old.yaml ├── tools ├── asm-differ │ └── diff_dll │ │ ├── brancharobi │ │ ├── brancharobi.js │ │ └── brancharobi.py │ │ ├── diff.py │ │ ├── diff3.py │ │ └── notes │ │ └── branch_arrows │ │ ├── a.js │ │ ├── notes.txt │ │ ├── res00.PNG │ │ └── res01.PNG ├── ido5.3_recomp │ ├── Makefile │ ├── acpp │ ├── as1 │ ├── cc │ ├── cc_c.c │ ├── cfe │ ├── copt │ ├── elf.h │ ├── err.english.cc │ ├── header.h │ ├── helpers.h │ ├── libc_impl.c │ ├── libc_impl.h │ ├── recomp │ ├── recomp.cpp │ ├── ugen │ ├── ugen_c.c │ ├── ujoin │ ├── uld │ ├── umerge │ ├── uopt │ └── usplit ├── infgen ├── pako │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── lib │ │ ├── deflate.js │ │ ├── inflate.js │ │ ├── utils │ │ │ ├── common.js │ │ │ └── strings.js │ │ └── zlib │ │ │ ├── README │ │ │ ├── adler32.js │ │ │ ├── constants.js │ │ │ ├── crc32.js │ │ │ ├── deflate.js │ │ │ ├── gzheader.js │ │ │ ├── inffast.js │ │ │ ├── inflate.js │ │ │ ├── inftrees.js │ │ │ ├── messages.js │ │ │ ├── trees.js │ │ │ └── zstream.js │ └── package.json └── split_inputs.py └── ver ├── _info.txt ├── aus ├── checksum.sha1 └── syms │ └── undefined.txt ├── eur ├── checksum.sha1 └── syms │ └── undefined.txt ├── jpn ├── checksum.sha1 └── syms │ └── undefined.txt └── usa ├── checksum.sha1 ├── splat.yaml └── syms ├── searchbase.txt └── undefined.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/Makefile -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/TODO.md -------------------------------------------------------------------------------- /_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/_info.txt -------------------------------------------------------------------------------- /autodiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/autodiff -------------------------------------------------------------------------------- /autopermute: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/autopermute -------------------------------------------------------------------------------- /hdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/hdiff -------------------------------------------------------------------------------- /hdiffc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/hdiffc -------------------------------------------------------------------------------- /include/2.0L/PR/PRimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/PRimage.h -------------------------------------------------------------------------------- /include/2.0L/PR/R4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/R4300.h -------------------------------------------------------------------------------- /include/2.0L/PR/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/abi.h -------------------------------------------------------------------------------- /include/2.0L/PR/gbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/gbi.h -------------------------------------------------------------------------------- /include/2.0L/PR/gs2dex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/gs2dex.h -------------------------------------------------------------------------------- /include/2.0L/PR/gt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/gt.h -------------------------------------------------------------------------------- /include/2.0L/PR/gu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/gu.h -------------------------------------------------------------------------------- /include/2.0L/PR/leo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/leo.h -------------------------------------------------------------------------------- /include/2.0L/PR/leoappli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/leoappli.h -------------------------------------------------------------------------------- /include/2.0L/PR/libaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/libaudio.h -------------------------------------------------------------------------------- /include/2.0L/PR/mbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/mbi.h -------------------------------------------------------------------------------- /include/2.0L/PR/n_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/n_abi.h -------------------------------------------------------------------------------- /include/2.0L/PR/n_libaudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/n_libaudio.h -------------------------------------------------------------------------------- /include/2.0L/PR/n_libaudio_s_to_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/n_libaudio_s_to_n.h -------------------------------------------------------------------------------- /include/2.0L/PR/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_ai.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_cache.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_cont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_cont.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_convert.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_debug.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_eeprom.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_error.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_exception.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_flash.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_gbpak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_gbpak.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_gio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_gio.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_host.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_internal.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_internal_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_internal_debug.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_internal_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_internal_error.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_internal_exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_internal_exception.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_internal_gio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_internal_gio.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_internal_host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_internal_host.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_internal_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_internal_reg.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_internal_rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_internal_rsp.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_internal_si.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_internal_si.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_internal_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_internal_thread.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_internal_tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_internal_tlb.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_libc.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_message.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_motor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_motor.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_pfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_pfs.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_pi.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_rdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_rdp.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_reg.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_rsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_rsp.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_si.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_si.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_system.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_thread.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_time.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_tlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_tlb.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_version.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_vi.h -------------------------------------------------------------------------------- /include/2.0L/PR/os_voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/os_voice.h -------------------------------------------------------------------------------- /include/2.0L/PR/ramrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/ramrom.h -------------------------------------------------------------------------------- /include/2.0L/PR/rcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/rcp.h -------------------------------------------------------------------------------- /include/2.0L/PR/rdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/rdb.h -------------------------------------------------------------------------------- /include/2.0L/PR/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/region.h -------------------------------------------------------------------------------- /include/2.0L/PR/rmon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/rmon.h -------------------------------------------------------------------------------- /include/2.0L/PR/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/sched.h -------------------------------------------------------------------------------- /include/2.0L/PR/sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/sp.h -------------------------------------------------------------------------------- /include/2.0L/PR/sptask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/sptask.h -------------------------------------------------------------------------------- /include/2.0L/PR/ucode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/ucode.h -------------------------------------------------------------------------------- /include/2.0L/PR/ucode_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/ucode_debug.h -------------------------------------------------------------------------------- /include/2.0L/PR/ultraerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/ultraerror.h -------------------------------------------------------------------------------- /include/2.0L/PR/ultralog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/ultralog.h -------------------------------------------------------------------------------- /include/2.0L/PR/ultratypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/ultratypes.h -------------------------------------------------------------------------------- /include/2.0L/PR/uportals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/PR/uportals.h -------------------------------------------------------------------------------- /include/2.0L/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/assert.h -------------------------------------------------------------------------------- /include/2.0L/ultra64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/2.0L/ultra64.h -------------------------------------------------------------------------------- /include/bootcode_cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/bootcode_cipher.h -------------------------------------------------------------------------------- /include/dlls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/dlls.h -------------------------------------------------------------------------------- /include/enum/asset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/enum/asset.h -------------------------------------------------------------------------------- /include/enum/behaviour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/enum/behaviour.h -------------------------------------------------------------------------------- /include/enum/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/enum/flag.h -------------------------------------------------------------------------------- /include/enum/item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/enum/item.h -------------------------------------------------------------------------------- /include/enum/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/enum/map.h -------------------------------------------------------------------------------- /include/enum/minigame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/enum/minigame.h -------------------------------------------------------------------------------- /include/enum/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/enum/music.h -------------------------------------------------------------------------------- /include/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/functions.h -------------------------------------------------------------------------------- /include/hacks/cheatcipher_end.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/hacks/cheatcipher_end.h -------------------------------------------------------------------------------- /include/hacks/cheatcipher_start.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/hacks/cheatcipher_start.h -------------------------------------------------------------------------------- /include/hacks/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/hacks/helpers.h -------------------------------------------------------------------------------- /include/struct/music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/struct/music.h -------------------------------------------------------------------------------- /include/struct/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/struct/object.h -------------------------------------------------------------------------------- /include/struct/player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/struct/player.h -------------------------------------------------------------------------------- /include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/types.h -------------------------------------------------------------------------------- /include/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/include/variables.h -------------------------------------------------------------------------------- /manager/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/clean.js -------------------------------------------------------------------------------- /manager/dllmgr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/dllmgr.js -------------------------------------------------------------------------------- /manager/enum/_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/enum/_info.txt -------------------------------------------------------------------------------- /manager/enum/calltableoffset/aus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/enum/calltableoffset/aus.txt -------------------------------------------------------------------------------- /manager/enum/calltableoffset/eur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/enum/calltableoffset/eur.txt -------------------------------------------------------------------------------- /manager/enum/calltableoffset/jpn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/enum/calltableoffset/jpn.txt -------------------------------------------------------------------------------- /manager/enum/calltableoffset/usa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/enum/calltableoffset/usa.txt -------------------------------------------------------------------------------- /manager/enum/disasm_start_addrs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/enum/disasm_start_addrs.txt -------------------------------------------------------------------------------- /manager/enum/syscallidx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/enum/syscallidx.txt -------------------------------------------------------------------------------- /manager/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/package-lock.json -------------------------------------------------------------------------------- /manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/package.json -------------------------------------------------------------------------------- /manager/sym_autogen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/sym_autogen.js -------------------------------------------------------------------------------- /manager/watches/_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/manager/watches/_info.txt -------------------------------------------------------------------------------- /scripts/dll_cothemedll_arrgen/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/dll_cothemedll_arrgen/a.js -------------------------------------------------------------------------------- /scripts/dll_gcintrotext_arrgen/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/dll_gcintrotext_arrgen/a.js -------------------------------------------------------------------------------- /scripts/dll_gcintrotext_arrgen/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/dll_gcintrotext_arrgen/b.js -------------------------------------------------------------------------------- /scripts/dll_gcintrotext_arrgen/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/dll_gcintrotext_arrgen/c.js -------------------------------------------------------------------------------- /scripts/dll_gcintrotext_arrgen/out_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/dll_gcintrotext_arrgen/out_a.txt -------------------------------------------------------------------------------- /scripts/dll_gcintrotext_arrgen/out_b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/dll_gcintrotext_arrgen/out_b.txt -------------------------------------------------------------------------------- /scripts/dll_gcintrotext_arrgen/out_c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/dll_gcintrotext_arrgen/out_c.txt -------------------------------------------------------------------------------- /scripts/dll_h_comments_gen/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/dll_h_comments_gen/a.js -------------------------------------------------------------------------------- /scripts/dll_h_comments_gen/dlls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/dll_h_comments_gen/dlls.txt -------------------------------------------------------------------------------- /scripts/generic_arrgen/ENUM/BCCI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/generic_arrgen/ENUM/BCCI.json -------------------------------------------------------------------------------- /scripts/generic_arrgen/ENUM/MAP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/generic_arrgen/ENUM/MAP.json -------------------------------------------------------------------------------- /scripts/generic_arrgen/ENUM/MUSIC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/generic_arrgen/ENUM/MUSIC.json -------------------------------------------------------------------------------- /scripts/generic_arrgen/arrgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/generic_arrgen/arrgen.js -------------------------------------------------------------------------------- /scripts/generic_arrgen/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/generic_arrgen/readme.txt -------------------------------------------------------------------------------- /scripts/generic_arrgen/runs/_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/scripts/generic_arrgen/runs/_example.txt -------------------------------------------------------------------------------- /src/dlls/badronemem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/badronemem.c -------------------------------------------------------------------------------- /src/dlls/bamoveledge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/bamoveledge.c -------------------------------------------------------------------------------- /src/dlls/bastatemem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/bastatemem.c -------------------------------------------------------------------------------- /src/dlls/chcoderoombits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/chcoderoombits.c -------------------------------------------------------------------------------- /src/dlls/chlavaarchgrillswitch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/chlavaarchgrillswitch.c -------------------------------------------------------------------------------- /src/dlls/chmrtannoy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/chmrtannoy.c -------------------------------------------------------------------------------- /src/dlls/cosection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/cosection.c -------------------------------------------------------------------------------- /src/dlls/cothemedll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/cothemedll.c -------------------------------------------------------------------------------- /src/dlls/dbpalette.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/dbpalette.c -------------------------------------------------------------------------------- /src/dlls/dbvtxnormal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/dbvtxnormal.c -------------------------------------------------------------------------------- /src/dlls/fxkern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/fxkern.c -------------------------------------------------------------------------------- /src/dlls/gcegg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/gcegg.c -------------------------------------------------------------------------------- /src/dlls/gcextra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/gcextra.c -------------------------------------------------------------------------------- /src/dlls/gcgamefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/gcgamefix.c -------------------------------------------------------------------------------- /src/dlls/gcintrotext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/gcintrotext.c -------------------------------------------------------------------------------- /src/dlls/gcwater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/gcwater.c -------------------------------------------------------------------------------- /src/dlls/glcrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/glcrc.c -------------------------------------------------------------------------------- /src/dlls/glgamestore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/glgamestore.c -------------------------------------------------------------------------------- /src/dlls/glglobaldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/glglobaldata.c -------------------------------------------------------------------------------- /src/dlls/glglobalsettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/glglobalsettings.c -------------------------------------------------------------------------------- /src/dlls/glhittableDll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/glhittableDll.c -------------------------------------------------------------------------------- /src/dlls/glreflight.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/glreflight.c -------------------------------------------------------------------------------- /src/dlls/gzpublic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/gzpublic.c -------------------------------------------------------------------------------- /src/dlls/gzreg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/gzreg.c -------------------------------------------------------------------------------- /src/dlls/gzthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/gzthread.c -------------------------------------------------------------------------------- /src/dlls/sujiggy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/src/dlls/sujiggy.c -------------------------------------------------------------------------------- /tmp/Untitled-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tmp/Untitled-1.txt -------------------------------------------------------------------------------- /tmp/dll_gzip_cpy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tmp/dll_gzip_cpy.sh -------------------------------------------------------------------------------- /tmp/splat_bk_old.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tmp/splat_bk_old.yaml -------------------------------------------------------------------------------- /tools/asm-differ/diff_dll/brancharobi/brancharobi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/asm-differ/diff_dll/brancharobi/brancharobi.js -------------------------------------------------------------------------------- /tools/asm-differ/diff_dll/brancharobi/brancharobi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/asm-differ/diff_dll/brancharobi/brancharobi.py -------------------------------------------------------------------------------- /tools/asm-differ/diff_dll/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/asm-differ/diff_dll/diff.py -------------------------------------------------------------------------------- /tools/asm-differ/diff_dll/diff3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/asm-differ/diff_dll/diff3.py -------------------------------------------------------------------------------- /tools/asm-differ/diff_dll/notes/branch_arrows/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/asm-differ/diff_dll/notes/branch_arrows/a.js -------------------------------------------------------------------------------- /tools/asm-differ/diff_dll/notes/branch_arrows/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/asm-differ/diff_dll/notes/branch_arrows/notes.txt -------------------------------------------------------------------------------- /tools/asm-differ/diff_dll/notes/branch_arrows/res00.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/asm-differ/diff_dll/notes/branch_arrows/res00.PNG -------------------------------------------------------------------------------- /tools/asm-differ/diff_dll/notes/branch_arrows/res01.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/asm-differ/diff_dll/notes/branch_arrows/res01.PNG -------------------------------------------------------------------------------- /tools/ido5.3_recomp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/Makefile -------------------------------------------------------------------------------- /tools/ido5.3_recomp/acpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/acpp -------------------------------------------------------------------------------- /tools/ido5.3_recomp/as1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/as1 -------------------------------------------------------------------------------- /tools/ido5.3_recomp/cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/cc -------------------------------------------------------------------------------- /tools/ido5.3_recomp/cc_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/cc_c.c -------------------------------------------------------------------------------- /tools/ido5.3_recomp/cfe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/cfe -------------------------------------------------------------------------------- /tools/ido5.3_recomp/copt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/copt -------------------------------------------------------------------------------- /tools/ido5.3_recomp/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/elf.h -------------------------------------------------------------------------------- /tools/ido5.3_recomp/err.english.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/err.english.cc -------------------------------------------------------------------------------- /tools/ido5.3_recomp/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/header.h -------------------------------------------------------------------------------- /tools/ido5.3_recomp/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/helpers.h -------------------------------------------------------------------------------- /tools/ido5.3_recomp/libc_impl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/libc_impl.c -------------------------------------------------------------------------------- /tools/ido5.3_recomp/libc_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/libc_impl.h -------------------------------------------------------------------------------- /tools/ido5.3_recomp/recomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/recomp -------------------------------------------------------------------------------- /tools/ido5.3_recomp/recomp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/recomp.cpp -------------------------------------------------------------------------------- /tools/ido5.3_recomp/ugen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/ugen -------------------------------------------------------------------------------- /tools/ido5.3_recomp/ugen_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/ugen_c.c -------------------------------------------------------------------------------- /tools/ido5.3_recomp/ujoin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/ujoin -------------------------------------------------------------------------------- /tools/ido5.3_recomp/uld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/uld -------------------------------------------------------------------------------- /tools/ido5.3_recomp/umerge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/umerge -------------------------------------------------------------------------------- /tools/ido5.3_recomp/uopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/uopt -------------------------------------------------------------------------------- /tools/ido5.3_recomp/usplit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/ido5.3_recomp/usplit -------------------------------------------------------------------------------- /tools/infgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/infgen -------------------------------------------------------------------------------- /tools/pako/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/LICENSE -------------------------------------------------------------------------------- /tools/pako/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/README.md -------------------------------------------------------------------------------- /tools/pako/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/index.js -------------------------------------------------------------------------------- /tools/pako/lib/deflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/deflate.js -------------------------------------------------------------------------------- /tools/pako/lib/inflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/inflate.js -------------------------------------------------------------------------------- /tools/pako/lib/utils/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/utils/common.js -------------------------------------------------------------------------------- /tools/pako/lib/utils/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/utils/strings.js -------------------------------------------------------------------------------- /tools/pako/lib/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/README -------------------------------------------------------------------------------- /tools/pako/lib/zlib/adler32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/adler32.js -------------------------------------------------------------------------------- /tools/pako/lib/zlib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/constants.js -------------------------------------------------------------------------------- /tools/pako/lib/zlib/crc32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/crc32.js -------------------------------------------------------------------------------- /tools/pako/lib/zlib/deflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/deflate.js -------------------------------------------------------------------------------- /tools/pako/lib/zlib/gzheader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/gzheader.js -------------------------------------------------------------------------------- /tools/pako/lib/zlib/inffast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/inffast.js -------------------------------------------------------------------------------- /tools/pako/lib/zlib/inflate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/inflate.js -------------------------------------------------------------------------------- /tools/pako/lib/zlib/inftrees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/inftrees.js -------------------------------------------------------------------------------- /tools/pako/lib/zlib/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/messages.js -------------------------------------------------------------------------------- /tools/pako/lib/zlib/trees.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/trees.js -------------------------------------------------------------------------------- /tools/pako/lib/zlib/zstream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/lib/zlib/zstream.js -------------------------------------------------------------------------------- /tools/pako/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/pako/package.json -------------------------------------------------------------------------------- /tools/split_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/tools/split_inputs.py -------------------------------------------------------------------------------- /ver/_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/ver/_info.txt -------------------------------------------------------------------------------- /ver/aus/checksum.sha1: -------------------------------------------------------------------------------- 1 | 4ca2d332f6e6b018777afc6a8b7880b38b6dfb79 baserom.z64 2 | -------------------------------------------------------------------------------- /ver/aus/syms/undefined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/ver/aus/syms/undefined.txt -------------------------------------------------------------------------------- /ver/eur/checksum.sha1: -------------------------------------------------------------------------------- 1 | 93bf2fac1387320ad07251cb4b64fd36bac1d7a6 baserom.z64 2 | -------------------------------------------------------------------------------- /ver/eur/syms/undefined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/ver/eur/syms/undefined.txt -------------------------------------------------------------------------------- /ver/jpn/checksum.sha1: -------------------------------------------------------------------------------- 1 | 5a5172383037d171f121790959962703be1f373c baserom.z64 2 | -------------------------------------------------------------------------------- /ver/jpn/syms/undefined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/ver/jpn/syms/undefined.txt -------------------------------------------------------------------------------- /ver/usa/checksum.sha1: -------------------------------------------------------------------------------- 1 | af1a89e12b638b8d82cc4c085c8e01d4cba03fb3 baserom.z64 2 | -------------------------------------------------------------------------------- /ver/usa/splat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/ver/usa/splat.yaml -------------------------------------------------------------------------------- /ver/usa/syms/searchbase.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ver/usa/syms/undefined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedarobi/banjo2/HEAD/ver/usa/syms/undefined.txt --------------------------------------------------------------------------------