jak-project/game/runtime.h
water111 f9d8fcd6e4
[decomp] add mips2c converter (#842)
* mips 2 c basic version, not yet tested

* calling works without crashing, but the function doesn't

* it works

* add test

* cleanup and actually add the test

* dont use mips2c by default for font

* clean up formatting
2021-09-11 20:52:35 -04:00

15 lines
242 B
C++

#pragma once
/*!
* @file runtime.h
* Setup and launcher for the runtime.
*/
#include "common/common_types.h"
#include <thread>
extern u8* g_ee_main_mem;
u32 exec_runtime(int argc, char** argv);
extern std::thread::id g_main_thread_id;