forked from FireEmblemUniverse/SkillSystem_FE8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ROMBuildfile.event
35 lines (27 loc) · 955 Bytes
/
ROMBuildfile.event
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
#ifdef _FE8_
#include "EAstdlib.event"
#include "CustomDefinitions.event"
//PROTECT $25224
ORG FreeSpace
#include "repointedTextTable.event"
//Text first for Text ID definitions
#include "Text/InstallTextData.event"
MESSAGE Used text space ends at currentOffset
//CSV tables
#include "Tables/TableInstaller.event"
MESSAGE Used table space ends at currentOffset
//Engine Hacks
#include "EngineHacks/_MasterHackInstaller.event"
MESSAGE Used hax space ends at currentOffset
#ifdef USE_TEST_MAP
//Events
#include "Events/Release_map.event"
#include "Events/WorldMapEvents.event"
//Maps
#include "Maps/MasterMapInstaller.event"
#endif // USE_TEST_MAP
ASSERT (FreeSpaceEnd - currentOffset) // So that you don't overwrite vanilla tables if using default freespace
MESSAGE Used free space ends at currentOffset
#else
ERROR "You are not assembling FE8 events!"
#endif