summaryrefslogtreecommitdiff
path: root/asm/macros/function.inc
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2020-07-03 13:47:49 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2020-07-03 13:47:49 -0400
commita9d89d196cad1fc40c2b8f0d79a63d8c1894bef7 (patch)
tree7104210dd0a425e5b8062a1fe0ba219931b76be5 /asm/macros/function.inc
parentb4e0fdb8aa1f6c1a4b3d2404017c866bfdc90320 (diff)
Rename funcs related to hall of fame
Diffstat (limited to 'asm/macros/function.inc')
-rw-r--r--asm/macros/function.inc24
1 files changed, 0 insertions, 24 deletions
diff --git a/asm/macros/function.inc b/asm/macros/function.inc
deleted file mode 100644
index 6b9e5f40..00000000
--- a/asm/macros/function.inc
+++ /dev/null
@@ -1,24 +0,0 @@
- .macro arm_func_start name
- .balign 4, 0
- .global \name
- .arm
- .endm
-
- .macro arm_func_end name
- .size \name, .-\name
- .endm
-
- .macro thumb_func_start name
- .balign 4, 0
- .global \name
- .thumb
- .endm
-
- .macro non_word_aligned_thumb_func_start name
- .global \name
- .thumb
- .endm
-
- .macro thumb_func_end name
- .size \name, .-\name
- .endm