diff options
author | IIMarckus <iimarckus@gmail.com> | 2012-03-20 18:43:04 -0600 |
---|---|---|
committer | IIMarckus <iimarckus@gmail.com> | 2012-03-20 18:43:04 -0600 |
commit | 3af505fe55a27f38904bac802163e7bfcf990094 (patch) | |
tree | c8c162a45d6d75a03c80e4d6f2ccfcf431155d55 /constants.asm | |
parent | b9175e8a030e4adcb85cecd43b2aaa83a4849f3d (diff) |
Add pointers to the 0f script commands.
Diffstat (limited to 'constants.asm')
-rw-r--r-- | constants.asm | 6 |
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 |