diff options
author | xCrystal <rgr.crystal@gmail.com> | 2016-05-21 19:14:28 +0200 |
---|---|---|
committer | xCrystal <rgr.crystal@gmail.com> | 2016-05-21 19:14:28 +0200 |
commit | 972037ab368c93a844905db9ed432b06ed605679 (patch) | |
tree | 4590da5b9449c972b15523365a336def4490b72a /src/constants | |
parent | 45b8d56bd93c7c5049b3dd31faed01ba560ab293 (diff) |
rename text macro to textpointer and text/line/done for better text readability
Diffstat (limited to 'src/constants')
-rwxr-xr-x | src/constants/text_constants.asm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/constants/text_constants.asm b/src/constants/text_constants.asm index a018be1..674037e 100755 --- a/src/constants/text_constants.asm +++ b/src/constants/text_constants.asm @@ -1,10 +1,15 @@ TX_START EQU $06 +TX_LINE EQU "\n" TX_END EQU $00 TX_RAM1 EQU $09 TX_RAM2 EQU $0B TX_RAM3 EQU $0C +text EQUS "db TX_START," +line EQUS "db TX_LINE," +done EQUS "db TX_END" + TX_FIRE EQUS "$05,$01" TX_GRASS EQUS "$05,$02" TX_LIGHTNING EQUS "$05,$03" |