summaryrefslogtreecommitdiff
path: root/berry_fix/payload/asm/macros/field_effect_script.inc
diff options
context:
space:
mode:
authorSatoMew <SatoMew@users.noreply.github.com>2019-10-08 22:46:32 +0100
committerSatoMew <SatoMew@users.noreply.github.com>2019-10-08 22:46:32 +0100
commit2c254082de042dde46cee9d2da2d9bb1bc340905 (patch)
treeaf99bcac2c6fece9523b12dbabe4128ec26f6fc9 /berry_fix/payload/asm/macros/field_effect_script.inc
parent78558b07b0983b6b8b06085933fdf66b801658e9 (diff)
parent2a7205dec677c98d087cb8ba191370de464c8bf0 (diff)
Merge branch 'master' of https://github.com/pret/pokefirered
Diffstat (limited to 'berry_fix/payload/asm/macros/field_effect_script.inc')
-rw-r--r--berry_fix/payload/asm/macros/field_effect_script.inc42
1 files changed, 0 insertions, 42 deletions
diff --git a/berry_fix/payload/asm/macros/field_effect_script.inc b/berry_fix/payload/asm/macros/field_effect_script.inc
deleted file mode 100644
index d5895b0ef..000000000
--- a/berry_fix/payload/asm/macros/field_effect_script.inc
+++ /dev/null
@@ -1,42 +0,0 @@
- .macro loadtiles address
- .byte 0
- .4byte \address
- .endm
-
- .macro loadfadedpal address
- .byte 1
- .4byte \address
- .endm
-
- .macro loadpal address
- .byte 2
- .4byte \address
- .endm
-
- .macro callnative address
- .byte 3
- .4byte \address
- .endm
-
- .macro end
- .byte 4
- .endm
-
- .macro loadgfx_callnative tiles_address, palette_address, function_address
- .byte 5
- .4byte \tiles_address
- .4byte \palette_address
- .4byte \function_address
- .endm
-
- .macro loadtiles_callnative tiles_address, function_address
- .byte 6
- .4byte \tiles_address
- .4byte \function_address
- .endm
-
- .macro loadfadedpal_callnative palette_address, function_address
- .byte 7
- .4byte \palette_address
- .4byte \function_address
- .endm