mirror of
https://github.com/encounter/oot-gc.git
synced 2026-07-10 12:18:42 -07:00
12 lines
517 B
Python
12 lines
517 B
Python
def apply(config, args):
|
|
config["baseimg"] = "SIM_S.elf"
|
|
config["myimg"] = "build/SIM/SIM_S.elf"
|
|
config["mapfile"] = "build/SIM/SIM.map"
|
|
config["source_directories"] = ["src", "include"]
|
|
config["arch"] = "ppc"
|
|
config["map_format"] = "mw" # gnu, mw, ms
|
|
config["build_dir"] = "build/SIM/" # only needed for mw and ms map format
|
|
config["objdump_executable"] = "tools/objdump_wrapper.py"
|
|
config["show_line_numbers_default"] = True
|
|
config["show_target_line_numbers_default"] = True
|