mirror of https://github.com/pmret/papermario.git
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]
|