summaryrefslogtreecommitdiff
path: root/berry_fix/payload/asm/macros/asm.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/asm.inc
parent78558b07b0983b6b8b06085933fdf66b801658e9 (diff)
parent2a7205dec677c98d087cb8ba191370de464c8bf0 (diff)
Merge branch 'master' of https://github.com/pret/pokefirered
Diffstat (limited to 'berry_fix/payload/asm/macros/asm.inc')
-rw-r--r--berry_fix/payload/asm/macros/asm.inc17
1 files changed, 0 insertions, 17 deletions
diff --git a/berry_fix/payload/asm/macros/asm.inc b/berry_fix/payload/asm/macros/asm.inc
deleted file mode 100644
index 26b2707ca..000000000
--- a/berry_fix/payload/asm/macros/asm.inc
+++ /dev/null
@@ -1,17 +0,0 @@
- .ifndef GUARD_ASM_MACROS_ASM_INC
- .set GUARD_ASM_MACROS_ASM_INC, 1
-
- .macro inc x
- .set \x, \x + 1
- .endm
-
- .macro enum_start x=0
- .set __enum__, \x
- .endm
-
- .macro enum constant
- .equiv \constant, __enum__
- inc __enum__
- .endm
-
- .endif @ GUARD_ASM_MACROS_ASM_INC