Make text.asm an object

This commit is contained in:
yenatch 2014-01-23 15:55:33 -05:00
parent cf90d30e9e
commit b4e8ec0901
3 changed files with 9 additions and 4 deletions

View file

@ -8,11 +8,13 @@ TEXTQUEUE :=
RED_OBJS := \
pokered.o \
audio_red.o
audio_red.o \
text.o
BLUE_OBJS := \
pokeblue.o \
audio_blue.o
audio_blue.o \
text.o
OBJS := $(RED_OBJS) $(BLUE_OBJS)

View file

@ -115622,5 +115622,3 @@ TechnicalMachinePrices: ; 7bfa7 (1e:7fa7)
db $22, $52, $24, $34, $42
INCLUDE "text.asm"

View file

@ -1,3 +1,5 @@
INCLUDE "globals.asm"
TEXT_1 EQU $20
TEXT_2 EQU $21
TEXT_3 EQU $22
@ -13,6 +15,9 @@ TEXT_11 EQU $2a
POKEDEX_TEXT EQU $2b
MOVE_NAMES EQU $2c
INCLUDE "macros.asm"
SECTION "Text 1", ROMX, BANK[TEXT_1]