diff options
author | yenatch <yenatch@gmail.com> | 2013-12-06 22:45:44 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2013-12-07 20:02:51 -0500 |
commit | be83aeda84939d92b3ff1ffb1efa52306bb29208 (patch) | |
tree | 364cb3b52cb4bd6628ccd68554869ad4d1d34b98 | |
parent | f8258985aa1ca9807308420faf5bf9bf2e3aae93 (diff) |
include globals.asm in rgbasm objects
-rw-r--r-- | pokeblue.asm | 1 | ||||
-rw-r--r-- | pokered.asm | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/pokeblue.asm b/pokeblue.asm index 33ae260c..dd621ca4 100644 --- a/pokeblue.asm +++ b/pokeblue.asm @@ -1,4 +1,5 @@ _RED EQU 0 _BLUE EQU 1 +INCLUDE "globals.asm" INCLUDE "wram.asm" INCLUDE "main.asm" diff --git a/pokered.asm b/pokered.asm index 8a814544..bcc826c8 100644 --- a/pokered.asm +++ b/pokered.asm @@ -1,4 +1,5 @@ _RED EQU 1 _BLUE EQU 0 +INCLUDE "globals.asm" INCLUDE "wram.asm" INCLUDE "main.asm" |