diff options
author | Rangi <35663410+Rangi42@users.noreply.github.com> | 2020-06-27 15:32:24 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-27 15:32:24 -0400 |
commit | 4b853ad676e061a6c4b0fcc030855a2705776864 (patch) | |
tree | a6d6f2976827862f4a5f402e92c8479ccf7fb349 /text | |
parent | ff927ba730e45a843c1e183b5f05646f96378af0 (diff) |
Separate maps.asm, pics.asm, sprites.asm, and tilesets.asm from main.asm (#251)
Each new file builds its own .o, along with separate main.o and home.o, which necessitates many more "exported::" labels.
Diffstat (limited to 'text')
-rwxr-xr-x | text/item_names.asm | 2 | ||||
-rwxr-xr-x | text/monster_names.asm | 2 | ||||
-rwxr-xr-x | text/trainer_names.asm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/text/item_names.asm b/text/item_names.asm index e436d74d..0c07fe5d 100755 --- a/text/item_names.asm +++ b/text/item_names.asm @@ -1,4 +1,4 @@ -ItemNames: +ItemNames:: db "MASTER BALL@" db "ULTRA BALL@" db "GREAT BALL@" diff --git a/text/monster_names.asm b/text/monster_names.asm index a62b1bd9..83a45b77 100755 --- a/text/monster_names.asm +++ b/text/monster_names.asm @@ -1,4 +1,4 @@ -MonsterNames: +MonsterNames:: db "RHYDON@@@@" db "KANGASKHAN" db "NIDORAN♂@@" diff --git a/text/trainer_names.asm b/text/trainer_names.asm index 7736738b..d8e1f550 100755 --- a/text/trainer_names.asm +++ b/text/trainer_names.asm @@ -1,4 +1,4 @@ -TrainerNames: +TrainerNames:: db "YOUNGSTER@" db "BUG CATCHER@" db "LASS@" |