summaryrefslogtreecommitdiff
path: root/constants.asm
diff options
context:
space:
mode:
authorIIMarckus <iimarckus@gmail.com>2012-03-20 18:43:04 -0600
committerIIMarckus <iimarckus@gmail.com>2012-03-20 18:43:04 -0600
commit3af505fe55a27f38904bac802163e7bfcf990094 (patch)
treec8c162a45d6d75a03c80e4d6f2ccfcf431155d55 /constants.asm
parentb9175e8a030e4adcb85cecd43b2aaa83a4849f3d (diff)
Add pointers to the 0f script commands.
Diffstat (limited to 'constants.asm')
-rw-r--r--constants.asm6
1 files changed, 6 insertions, 0 deletions
diff --git a/constants.asm b/constants.asm
index 8f0900c5a..c3c4061c8 100644
--- a/constants.asm
+++ b/constants.asm
@@ -1,3 +1,9 @@
+; macro for putting a byte then a word
+dbw: MACRO
+ db \1
+ dw \2
+ ENDM
+
BULBASAUR EQU 1
IVYSAUR EQU 2
VENUSAUR EQU 3