mirror of
https://github.com/zeldaret/oot3d.git
synced 2026-09-26 13:33:22 -04:00
a87ddae432
* pull known Actor functions GLOBAL_ASMs into their cpp files * attempt to pull unidentified actor functions GLOBAL_ASMs into their corresponding source files by scanning the call-graph
9 lines
334 B
Python
9 lines
334 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" |