diff options
author | Bryan Bishop <kanzure@gmail.com> | 2015-01-20 12:14:38 -0600 |
---|---|---|
committer | Bryan Bishop <kanzure@gmail.com> | 2015-01-20 12:14:38 -0600 |
commit | 567b576f60866f92eda1660ecd19bf3e6d7519c6 (patch) | |
tree | 37f64e9b8e11b410fc6e3723827571e16dd07e0d /macros/text.asm | |
parent | 4781d9a809565804a4b99024a69a51156fd2749e (diff) | |
parent | 0fa7b553bddeb4ba70b216c93eb09226b2674beb (diff) |
Merge pull request #268 from yenatch/master
remove preprocessor
Diffstat (limited to 'macros/text.asm')
-rw-r--r-- | macros/text.asm | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/macros/text.asm b/macros/text.asm new file mode 100644 index 000000000..ae49d8fbb --- /dev/null +++ b/macros/text.asm @@ -0,0 +1,65 @@ +text_from_ram: macro + db 1 + dw \1 + endm + +text_dunno1: macro + db 5 + endm + +text_waitbutton: macro + db 6 + endm + +text_dunno2: macro + db 7 + endm + +start_asm: macro + db 8 + endm + +deciram: macro + db 9 + dw \1 + db \2 + endm + +interpret_data: macro + db 10 + endm + +sound0: macro + db 11 + endm + +limited_interpret_data: macro + db 12 + db \1 + endm + +sound0x0F: macro + db $f + endm + +sound0x02: macro + db $10 + endm + +sound0x0A: macro + db $11 + endm + +sound0x2C: macro + db $13 + endm + +current_day: macro + db $15 + endm + +text_jump: macro + db $16 + dw \1 + db BANK(\1) + endm |