-
Notifications
You must be signed in to change notification settings - Fork 0
/
ROM Buildfile.txt
44 lines (30 loc) · 1.05 KB
/
ROM Buildfile.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#ifdef _FE8_
#include "Destiny Definitions.txt"
#include "EAstdlib.event"
#define Free_Space 0xb2a610
ORG Free_Space
#define INLINE
MESSAGE "Used free space starts at" CURRENTOFFSET
//CSV tables
#include "Table Installer.txt"
#include "Tables/Destiny Table Data External.txt"
//Install Hacks
#include "Engine Hacks/_MasterHackInstaller.txt"
//Graphics
#include "Mugs and Graphics/Install Graphics Data.txt"
//Chapter Events
#define InlineEvents //Compile events into this free space.
#include "Events/Chapter Events Installer.txt"
#include "Events/World Map Events Installer.txt"
//Maps
#include "Maps/Master Map Installer.txt"
#undef InlineEvents
//Music
#include "Music and Sound/Music Installer.txt"
//Text
//MESSAGE Text data at currentOffset
#include "Text/Install Text.txt"
MESSAGE "Used free space ends at" currentOffset
#else
ERROR You are not assembling FE8 events!
#endif