diff --git a/configure.py b/configure.py index f54e93c4..f8a43598 100644 --- a/configure.py +++ b/configure.py @@ -242,7 +242,7 @@ cflags_trk = [ cflags_odemuexi = [ *cflags_base, - "-inline auto,deferred", + # TODO figure out flags ] cflags_amcstub = [ @@ -764,7 +764,7 @@ config.libs = [ "cflags": cflags_odemuexi, "host": False, "objects": [ - Object(Matching, "OdemuExi2/DebuggerDriver.c"), + Object(NonMatching, "OdemuExi2/DebuggerDriver.c"), ], }, { diff --git a/src/OdemuExi2/DebuggerDriver.c b/src/OdemuExi2/DebuggerDriver.c index 3a56495b..e9be8b4e 100644 --- a/src/OdemuExi2/DebuggerDriver.c +++ b/src/OdemuExi2/DebuggerDriver.c @@ -23,7 +23,7 @@ static u8 SendCount = 0x80; #define IS_FALSE(x) !IS_TRUE(x) #define ROUND_UP(x, align) (((x) + (align)-1) & (-(align))) -// TODO this matches, but there are probably no inline flags used, so the order of functions would be different that way +// TODO void DBGEXIInit() {