[jak3] Decomp for gkernel, gkernel-h, gstate, gstring (#3326)

I ported the kernel test from jak1/jak2 to jak 3, and it's passing!
This commit is contained in:
water111
2024-01-21 18:08:05 -05:00
committed by GitHub
parent 638bf1d3d9
commit 01d5fc2bbb
27 changed files with 8868 additions and 387 deletions
+9
View File
@@ -140,6 +140,15 @@ void runtime_with_kernel_jak2() {
exec_runtime(game_options, argc, argv);
}
void runtime_with_kernel_jak3() {
constexpr int argc = 4;
const char* argv[argc] = {"", "-fakeiso", "-debug", "-nosound"};
GameLaunchOptions game_options;
game_options.disable_display = true;
game_options.game_version = GameVersion::Jak3;
exec_runtime(game_options, argc, argv);
}
void runtime_with_kernel_no_debug_segment() {
constexpr int argc = 4;
const char* argv[argc] = {"", "-fakeiso", "-debug-mem", "-nosound"};