mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-02-20 02:07:02 +03:00
It's also been renamed to stddef.h since all it contained was the definition of NULL, which lives in that header in a standard C library.
22 lines
329 B
C++
22 lines
329 B
C++
/* JSRF Decompilation: JSRF/Jet2.cpp
|
|
Main function.
|
|
*/
|
|
|
|
#pragma bss_seg(".data")
|
|
|
|
#include "../XDK/CRT/stddef.h"
|
|
#include "Core.hpp"
|
|
|
|
|
|
// Address: 0x0022FCE0
|
|
Game * g_game;
|
|
|
|
|
|
// Address: 0x0006F9E0
|
|
// Matching: yes
|
|
void main(void) {
|
|
g_game = new Game(NULL, 0);
|
|
g_game->initRootExecObj();
|
|
g_game->mainLoop();
|
|
delete g_game;
|
|
}
|