mirror of
https://github.com/zeldaret/oot3d.git
synced 2026-09-26 13:33:22 -04:00
9 lines
342 B
Python
9 lines
342 B
Python
import os
|
|
|
|
def apply(config, args):
|
|
config["baseimg"] = "Disassembly/baserom/exefs/code.bin"
|
|
config["myimg"] = "Build/code.bin"
|
|
config["source_directories"] = ["."]
|
|
config["arch"] = "armel"
|
|
config["arch_objdump"] = "arm"
|
|
config["objdump_executable"] = os.environ.get('DEVKITARM') + "/bin/arm-none-eabi-objdump" |