Decompile subchrdll.c

This commit is contained in:
gamemasterplc 2023-11-23 12:18:50 -06:00
parent b3452a8b91
commit 824ccd1ac6
8 changed files with 240 additions and 91 deletions

View file

@ -176,6 +176,7 @@ cflags_rel = [
"-char unsigned",
"-sdata 0",
"-sdata2 0",
"-pool off",
]
# Game flags
@ -230,6 +231,7 @@ config.libs = [
Object(NonMatching, "game/data.c"),
Object(Matching, "game/decode.c"),
Object(NonMatching, "game/font.c"),
Object(NonMatching, "game/jmp.c"),
Object(Matching, "game/malloc.c"),
Object(Matching, "game/memory.c"),
Object(NonMatching, "game/printfunc.c"),
@ -268,6 +270,16 @@ config.libs = [
Object(Matching, "REL/_minigameDLL/_minigameDLL.c"),
],
},
{
"lib": "subchrselDll",
"mw_version": config.linker_version,
"cflags": cflags_rel,
"host": False,
"objects": [
Object(Matching, "REL/executor.c"),
Object(Matching, "REL/subchrselDll/subchrselDll.c"),
],
},
]
if args.mode == "configure":