mirror of
https://github.com/zeldaret/botw
synced 2026-05-23 06:54:18 -04:00
9 lines
266 B
Python
9 lines
266 B
Python
#!/usr/bin/env python3
|
|
|
|
def apply(config, args):
|
|
config['arch'] = 'aarch64'
|
|
config['baseimg'] = 'data/main.elf'
|
|
config['myimg'] = 'build/uking.elf'
|
|
config['source_directories'] = ['src']
|
|
config['objdump_executable'] = 'aarch64-linux-gnu-objdump'
|