summaryrefslogtreecommitdiff
path: root/tools/libdol2asm/__init__.py
blob: 8cb6e5e39b330492930d5d0b5a8e01a01782fff7 (plain)
1
2
3
4
5
6
7
8
9

from . import globals
VERSION = globals.VERSION

def split(debug_logging, game_path, lib_path, src_path, asm_path, rel_path, inc_path, mk_gen, cpp_gen, asm_gen, sym_gen, rel_gen, process_count, select_modules, select_tu, select_asm):
    from . import split_asm
    from . import settings
    splitter = split_asm.Dol2AsmSplitter(debug_logging, game_path, lib_path, src_path, asm_path, rel_path, inc_path, mk_gen, cpp_gen, asm_gen, sym_gen, rel_gen, process_count, select_modules, select_tu, select_asm)
    return splitter.main()