diff options
author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-07-03 23:15:36 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-03 23:15:36 +0300 |
commit | c2fcab9edd0787c50f4a44ab0cb5ba1986bc2c47 (patch) | |
tree | f1ef15620cf51018dd915718a5093abfec306b56 /asm/macros/function.inc | |
parent | 276f24f2b7a21adfc86b8c4d9333efafc23f2671 (diff) | |
parent | 7eb53cf8e9cded5ef773c6943637ecfd67fb706f (diff) |
Merge pull request #215 from PikalaxALT/pikalax_work
Renaming of identified routines in overlays
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 |