diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-07-03 13:47:49 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-07-03 13:47:49 -0400 |
commit | a9d89d196cad1fc40c2b8f0d79a63d8c1894bef7 (patch) | |
tree | 7104210dd0a425e5b8062a1fe0ba219931b76be5 /asm/macros/function.inc | |
parent | b4e0fdb8aa1f6c1a4b3d2404017c866bfdc90320 (diff) |
Rename funcs related to hall of fame
Diffstat (limited to 'asm/macros/function.inc')
-rw-r--r-- | asm/macros/function.inc | 24 |
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 |