-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use exported constants for VC patch (#124)
- Loading branch information
Showing
5 changed files
with
67 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,53 @@ | ||
; These are all the asm constants needed to make the yellow_vc patch. | ||
|
||
MACRO vc_const | ||
DEF x = \1 | ||
PRINTLN "{02x: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 | ||
EXPORT DEF M_CHAR EQU "M" | ||
EXPORT DEF E_CHAR EQU "E" | ||
EXPORT DEF G_CHAR EQU "G" | ||
EXPORT DEF A_CHAR EQU "A" | ||
EXPORT DEF P_CHAR EQU "P" | ||
EXPORT DEF X_CHAR EQU "X" | ||
EXPORT DEF L_CHAR EQU "L" | ||
EXPORT DEF S_CHAR EQU "S" | ||
EXPORT DEF F_CHAR EQU "F" | ||
EXPORT MEGA_PUNCH | ||
|
||
; [FPA 002 Begin] | ||
vc_const "U" | ||
vc_const "I" | ||
vc_const GUILLOTINE | ||
EXPORT DEF U_CHAR EQU "U" | ||
EXPORT DEF I_CHAR EQU "I" | ||
EXPORT GUILLOTINE | ||
|
||
; [FPA 003 Begin] | ||
vc_const "K" | ||
vc_const MEGA_KICK | ||
EXPORT DEF K_CHAR EQU "K" | ||
EXPORT MEGA_KICK | ||
|
||
; [FPA 004 Begin] | ||
vc_const "B" | ||
vc_const "Z" | ||
vc_const BLIZZARD | ||
EXPORT DEF B_CHAR EQU "B" | ||
EXPORT DEF Z_CHAR EQU "Z" | ||
EXPORT BLIZZARD | ||
|
||
; [FPA 005 Begin] | ||
vc_const BUBBLEBEAM | ||
EXPORT BUBBLEBEAM | ||
|
||
; [FPA 006 Begin] | ||
vc_const "H" | ||
vc_const "Y" | ||
vc_const HYPER_BEAM | ||
EXPORT DEF H_CHAR EQU "H" | ||
EXPORT DEF Y_CHAR EQU "Y" | ||
EXPORT HYPER_BEAM | ||
|
||
; [FPA 007 Begin] | ||
vc_const "T" | ||
vc_const "N" | ||
vc_const THUNDERBOLT | ||
EXPORT DEF T_CHAR EQU "T" | ||
EXPORT DEF N_CHAR EQU "N" | ||
EXPORT THUNDERBOLT | ||
|
||
; [FPA 008 Begin] | ||
vc_const HAZE | ||
EXPORT HAZE | ||
|
||
; [FPA 009 Begin] | ||
vc_const "R" | ||
vc_const "F" | ||
vc_const REFLECT | ||
EXPORT DEF R_CHAR EQU "R" | ||
EXPORT REFLECT | ||
|
||
; [FPA 010 Begin] | ||
vc_const SELFDESTRUCT | ||
EXPORT SELFDESTRUCT | ||
|
||
; [FPA 011 Begin] | ||
vc_const EXPLOSION | ||
EXPORT EXPLOSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters