2019-11-03 20:36:27 +01:00
|
|
|
#include <ultra64.h>
|
|
|
|
#include "sm64.h"
|
|
|
|
#include "segment_symbols.h"
|
|
|
|
#include "level_commands.h"
|
|
|
|
|
2020-07-31 05:42:39 +02:00
|
|
|
#include "levels/menu/header.h"
|
2021-07-05 07:40:04 +02:00
|
|
|
#include "levels/scripts.h"
|
2023-10-30 06:03:36 +01:00
|
|
|
|
|
|
|
// #include "levels/intro/header.h"
|
2019-11-03 20:36:27 +01:00
|
|
|
|
|
|
|
#include "make_const_nonconst.h"
|
|
|
|
|
|
|
|
const LevelScript level_script_entry[] = {
|
2021-07-05 07:40:04 +02:00
|
|
|
SET_REG(/*value*/ LEVEL_CASTLE_GROUNDS),
|
2021-08-05 08:56:33 +02:00
|
|
|
EXECUTE(/*seg*/ 0x14, /*script*/ _introSegmentRomStart, /*scriptEnd*/ _introSegmentRomEnd, /*entry*/ level_main_scripts_entry),
|
|
|
|
JUMP(level_script_entry),
|
2021-07-05 07:40:04 +02:00
|
|
|
|
|
|
|
// old behavior (intro)
|
2023-10-30 06:03:36 +01:00
|
|
|
// INIT_LEVEL(),
|
|
|
|
// SLEEP(/*frames*/ 2),
|
|
|
|
// BLACKOUT(/*active*/ FALSE),
|
|
|
|
// SET_REG(/*value*/ 0),
|
|
|
|
// EXECUTE(/*seg*/ 0x14, /*script*/ _introSegmentRomStart, /*scriptEnd*/ _introSegmentRomEnd, /*entry*/ level_intro_splash_screen),
|
|
|
|
// JUMP(/*target*/ level_script_entry),
|
2019-11-03 20:36:27 +01:00
|
|
|
};
|