mirror of
https://github.com/ethteck/kh1.git
synced 2025-02-21 16:51:12 +00:00
18 lines
445 B
Python
18 lines
445 B
Python
import argparse
|
|
|
|
|
|
def apply(config, args):
|
|
config["arch"] = "mipsee"
|
|
config["baseimg"] = f"SLPS_251.05"
|
|
config["myimg"] = f"build/SLPS_251.05"
|
|
config["mapfile"] = f"build/SLPS_251.05.map"
|
|
config["source_directories"] = [
|
|
"src",
|
|
"asm",
|
|
"include",
|
|
"assets",
|
|
]
|
|
config["make_command"] = ["ninja"]
|
|
config["objdump_flags"] = ["-Mreg-names=n32"]
|
|
config["expected_dir"] = f"expected/"
|