diff options
| author | vulcandth <vulcandth@gmail.com> | 2022-03-26 21:05:06 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-26 22:05:06 -0400 |
| commit | fbaa5c9d4b48c000a52860a8392fc423c4e312f9 (patch) | |
| tree | 80c5d8b0458ab6a2c2f1995ed0addd1f6cb5570f /vc/pokeyellow.constants.asm | |
| parent | Refactor pkmncompress.c to use common.h (diff) | |
| download | pokeyellow-fbaa5c9d4b48c000a52860a8392fc423c4e312f9.tar.gz pokeyellow-fbaa5c9d4b48c000a52860a8392fc423c4e312f9.tar.xz pokeyellow-fbaa5c9d4b48c000a52860a8392fc423c4e312f9.zip | |
Build the Virtual Console patch with `make yellow_vc` (#80)
Diffstat (limited to 'vc/pokeyellow.constants.asm')
| -rw-r--r-- | vc/pokeyellow.constants.asm | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/vc/pokeyellow.constants.asm b/vc/pokeyellow.constants.asm new file mode 100644 index 00000000..89fb598f --- /dev/null +++ b/vc/pokeyellow.constants.asm @@ -0,0 +1,61 @@ +INCLUDE "constants.asm" + +; These are all the asm constants needed to make the blue_vc patch. + +vc_const: MACRO +x = \1 + PRINTLN "00:{04x:x} \1" ; same format as rgblink's .sym file +ENDM + +; [FPA 001 Begin] + vc_const "M" + vc_const "E" + vc_const "G" + vc_const "A" + vc_const "P" + vc_const "X" + vc_const "L" + vc_const "S" + vc_const "F" + vc_const MEGA_PUNCH + +; [FPA 002 Begin] + vc_const "U" + vc_const "I" + vc_const GUILLOTINE + +; [FPA 003 Begin] + vc_const "K" + vc_const MEGA_KICK + +; [FPA 004 Begin] + vc_const "B" + vc_const "Z" + vc_const BLIZZARD + +; [FPA 005 Begin] + vc_const BUBBLEBEAM + +; [FPA 006 Begin] + vc_const "H" + vc_const "Y" + vc_const HYPER_BEAM + +; [FPA 007 Begin] + vc_const "T" + vc_const "N" + vc_const THUNDERBOLT + +; [FPA 008 Begin] + vc_const HAZE + +; [FPA 009 Begin] + vc_const "R" + vc_const "F" + vc_const REFLECT + +; [FPA 010 Begin] + vc_const SELFDESTRUCT + +; [FPA 011 Begin] + vc_const EXPLOSION |
