mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 20:12:30 +01:00
ecb65c720a
* Change splat subrepo to use main branch * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "fbf3fa68a7" upstream: origin: "https://github.com/ethteck/splat.git" branch: "main" commit: "fbf3fa68a7" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * building now * vram classes in the us yaml * more progrezz * more * prepare to deal with the shiftable build * revert a couple things * bring the yaml more in line with the old one while debugging * got statis * vacuum * git subrepo pull --force tools/splat subrepo: subdir: "tools/splat" merged: "d6490bb877" upstream: origin: "https://github.com/ethteck/splat.git" branch: "main" commit: "d6490bb877" git-subrepo: version: "0.4.5" origin: "https://github.com/ingydotnet/git-subrepo" commit: "aa416e4" * clean
38 lines
944 B
YAML
38 lines
944 B
YAML
options:
|
|
platform: n64
|
|
basename: basic_app
|
|
base_path: .
|
|
build_path: build
|
|
target_path: build/basic_app.bin
|
|
asm_path: split/asm
|
|
src_path: split/src
|
|
ld_script_path: split/basic_app.ld
|
|
cache_path: split/.splache
|
|
symbol_addrs_path: split/generated.symbols.txt
|
|
undefined_funcs_auto_path: split/undefined_funcs_auto.txt
|
|
undefined_syms_auto_path: split/undefined_syms_auto.txt
|
|
asset_path: split/assets
|
|
compiler: GCC
|
|
segments:
|
|
- name: header
|
|
type: header
|
|
start: 0x00
|
|
- name: dummy_ipl3
|
|
type: code
|
|
start: 0x40
|
|
vram: 0xA4000040
|
|
subsegments:
|
|
- [0x0040, bin, dummy_ipl3]
|
|
- name: boot
|
|
type: code
|
|
start: 0x1000
|
|
vram: 0x80000400
|
|
bss_size: 0x80
|
|
subsegments:
|
|
- [0x1000, c, main]
|
|
- [0x10F0, hasm, handwritten]
|
|
- [0x1100, data, main]
|
|
- [0x1110, rodata, main]
|
|
- { type: bss, vram: 0x80000540, name: main }
|
|
- [0x1138]
|