-
Notifications
You must be signed in to change notification settings - Fork 0
/
ROMBuildfile.event
45 lines (33 loc) · 1.22 KB
/
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
36
37
38
39
40
41
42
43
44
45
#ifdef _FE8_
#include "EAstdlib.event"
#include "CustomDefinitions.event"
ORG FreeSpace
//Repointed tables
#include "repointedTextTable.event"
//Text first for Text ID definitions
#include "Text/InstallTextData.event"
MESSAGE "Used text space ends at 0x{currentAddress:X8}"
//CSV tables
#include "Tables/TableInstaller.event"
MESSAGE "Used table space ends at 0x{currentAddress:X8}"
//Item bonuses
#include "ItemBuffs.event"
//Engine Hacks
#include "EngineHacks/_MasterHackInstaller.event"
MESSAGE "Used hax space ends at 0x{currentAddress:X8}"
//Events
#include "Events/_EventInstaller.event"
//Graphics
#include "Graphics/Graphics.event"
//Music
#include "MusicInstaller/music_installer.event"
//Maps
#include "Maps/Tilesets/Animations/TileAnimationInstaller.event"
#include "Maps/TilesetInstaller.event"
#include "Maps/_MapInstaller.event"
//To prevent any patch weirdness
FILL 0x10
MESSAGE "Free Space ends at 0x{currentAddress:X8} Additions size is 0x{currentOffset-FreeSpace:X8}"
#else
ERROR Not building events on FE8 is a pitfall! Try again on a FE8 ROM.
#endif