Uppercase MACRO and EQU(S) according to the style guide

This commit is contained in:
xCrystal
2017-12-28 13:23:44 +01:00
parent 9457679af8
commit 7beb497d3a
33 changed files with 425 additions and 425 deletions

View File

@@ -1,4 +1,4 @@
momitem: macro
momitem: MACRO
; money to trigger, cost, kind, item
dt \1
dt \2

View File

@@ -1,4 +1,4 @@
sprite_movement_data: macro
sprite_movement_data: MACRO
db \1, \2, \3, \4, \5
dn \6, 0
endm

View File

@@ -1,4 +1,4 @@
prob: macro
prob: MACRO
prob_total = prob_total + (\1)
dw prob_total * $ffff / 100
endm

View File

@@ -6,7 +6,7 @@
const PAL_TOWNMAP_POI ; 4
const PAL_TOWNMAP_POI_MTN ; 5
townmappals: macro
townmappals: MACRO
rept _NARG / 2
dn PAL_TOWNMAP_\2, PAL_TOWNMAP_\1
shift

View File

@@ -1,4 +1,4 @@
phone: macro
phone: MACRO
; trainer class, trainer id, map, ?, script 1, ?, script 2
db \1, \2
map \3

View File

@@ -1,4 +1,4 @@
specialcall: macro
specialcall: MACRO
; condition, contact, script
dw \1
db \2

View File

@@ -1,4 +1,4 @@
unownword: macro
unownword: MACRO
x = 1
rept STRLEN(\1)
db STRSUB(\1, x, 1) - $40

View File

@@ -1,7 +1,7 @@
; Maps that roaming monsters can be on, and possible maps they can jump to.
; Notably missing are Route 40 and Route 41, which are water routes.
roam_map: macro
roam_map: MACRO
; map, # of other maps, other maps
map \1
db \2

View File

@@ -1,4 +1,4 @@
treemon_map: macro
treemon_map: MACRO
map \1
db \2 ; treemon set
endm