Remove bin2c, load the PPC context header by path.

This commit is contained in:
Skyth
2025-01-15 01:25:04 +03:00
parent ca39a3b992
commit 2cd41adf42
8 changed files with 19 additions and 100 deletions

View File

@@ -23,7 +23,15 @@ int main(int argc, char* argv[])
entry->name = "_xstart";
}
recompiler.Recompile();
const char* headerFilePath =
#ifdef HEADER_FILE_PATH
HEADER_FILE_PATH
#else
argv[2]
#endif
;
recompiler.Recompile(headerFilePath);
}
else
{