diff options
author | yenatch <yenatch@gmail.com> | 2014-01-27 16:22:41 -0500 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-01-27 16:24:13 -0500 |
commit | 1b9ee46af9f8baac0d266a54130115a719788377 (patch) | |
tree | 8ac61c0752dc74da0677cb26fe4db6362db5b2b7 /text/oakspeech.asm | |
parent | 6bde08504fdc336b1d458bab0bed4ef649cae25a (diff) |
Get rid of globals.asm. Use ::s to export labels between objects.
globals.asm was a hack that:
- gave rgbasm an extra 100k lines to read
- increased reliance on the python preprocessor
- made the makefile a mess
- gave object creation an extra step
- wasn't even necessary
This speeds up build time by at least a third.
Diffstat (limited to 'text/oakspeech.asm')
-rw-r--r-- | text/oakspeech.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/text/oakspeech.asm b/text/oakspeech.asm index a5851730..91aaf5c3 100644 --- a/text/oakspeech.asm +++ b/text/oakspeech.asm @@ -1,4 +1,4 @@ -_OakSpeechText1: +_OakSpeechText1:: text "Hello there!" line "Welcome to the" cont "world of #MON!" @@ -8,13 +8,13 @@ _OakSpeechText1: cont "the #MON PROF!" prompt -_OakSpeechText2A: +_OakSpeechText2A:: text "This world is" line "inhabited by" cont "creatures called" cont "#MON!@@" -_OakSpeechText2B: +_OakSpeechText2B:: text $51,"For some people," line "#MON are" cont "pets. Others use" @@ -26,12 +26,12 @@ _OakSpeechText2B: line "as a profession." prompt -_IntroducePlayerText: +_IntroducePlayerText:: text "First, what is" line "your name?" prompt -_IntroduceRivalText: +_IntroduceRivalText:: text "This is my grand-" line "son. He's been" cont "your rival since" @@ -41,7 +41,7 @@ _IntroduceRivalText: line "his name again?" prompt -_OakSpeechText3: +_OakSpeechText3:: text $52,"!" para "Your very own" |