You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
25 lines
718 B
C
25 lines
718 B
C
#include <ultra64.h>
|
|
#include "sm64.h"
|
|
#include "segment_symbols.h"
|
|
#include "level_commands.h"
|
|
|
|
#include "levels/intro/header.h"
|
|
|
|
#include "make_const_nonconst.h"
|
|
|
|
#include "config.h"
|
|
|
|
extern const LevelScript level_main_scripts_entry[];
|
|
const LevelScript level_script_entry[] = {
|
|
INIT_LEVEL(),
|
|
SLEEP(/*frames*/ 2),
|
|
BLACKOUT(/*active*/ FALSE),
|
|
#ifdef TEST_LEVEL
|
|
SET_REG(TEST_LEVEL),
|
|
EXECUTE(/*seg*/ 0x15, _scriptsSegmentRomStart, _scriptsSegmentRomEnd, level_main_scripts_entry),
|
|
#else
|
|
SET_REG(0),
|
|
EXECUTE(/*seg*/ 0x14, /*script*/ _introSegmentRomStart, /*scriptEnd*/ _introSegmentRomEnd, /*entry*/ level_intro_splash_screen),
|
|
#endif
|
|
JUMP(/*target*/ level_script_entry),
|
|
}; |