mirror of https://github.com/nmlgc/ReC98.git
23 lines
338 B
C++
23 lines
338 B
C++
#pragma option -zCSHARED
|
|
|
|
extern "C" {
|
|
#include "master.hpp"
|
|
#include "th01/hardware/vplanset.h"
|
|
#include "th02/mem.h"
|
|
#include "th02/formats/pf.hpp"
|
|
|
|
int game_init_main(void)
|
|
{
|
|
if(mem_assign_dos(MEM_ASSIGN_PARAS_MAIN)) {
|
|
return 1;
|
|
}
|
|
vram_planes_set();
|
|
vsync_start();
|
|
egc_start();
|
|
graph_400line();
|
|
game_pfopen();
|
|
return 0;
|
|
}
|
|
|
|
}
|