Add delink POSIX script

Also reworked the directory structure a little.
This commit is contained in:
KeybadeBlox 2025-12-14 22:53:33 -05:00
parent 7e1785e466
commit fe20d64d27
14 changed files with 81 additions and 14 deletions

19
src/Jet2.cpp Normal file
View file

@ -0,0 +1,19 @@
#pragma bss_seg(".data")
#include "Core.hpp"
// Address: 0x0022FCE0
// Core.cpp really seems like a more natural place to put this, but it doesn't
// appear to be with Core.cpp's other data in .data
Game * g_game;
// Address: 0x0006F9E0
// Matching: yes
void main(void) {
g_game = new Game(NULL, 0);
g_game->initExecRootObj();
g_game->mainLoop();
delete g_game;
}