[goalc] compile/run code for jak2 ckernel, set up dummy KERNEL.CGO (#1625)

[goalc] start can compile and run code for jak2 ckernel, set up dummy KERNEL.CGO
This commit is contained in:
water111
2022-07-08 19:23:49 -04:00
committed by GitHub
parent c0efde2763
commit 5e23057ed1
36 changed files with 1467 additions and 121 deletions
+7
View File
@@ -104,6 +104,13 @@ void runtime_no_kernel() {
exec_runtime(argc, const_cast<char**>(argv));
}
void runtime_no_kernel_jak2() {
constexpr int argc = 7;
const char* argv[argc] = {"", "-fakeiso", "-debug", "-nokernel",
"-nodisplay", "-nosound", "-jak2"};
exec_runtime(argc, const_cast<char**>(argv));
}
void runtime_with_kernel() {
constexpr int argc = 5;
const char* argv[argc] = {"", "-fakeiso", "-debug", "-nodisplay", "-nosound"};