summaryrefslogtreecommitdiff
path: root/berry_fix/payload/asm/macros/function.inc
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2022-01-15 13:11:24 -0500
committerGitHub <noreply@github.com>2022-01-15 13:11:24 -0500
commit7fb97f9e2579b5b61c8c141d38c43ff07a24a393 (patch)
treecc9e9fc2aa2a0e3070e73e61a8f5ebc2d5fd397d /berry_fix/payload/asm/macros/function.inc
parentf8ab09b4b42b4a28a36a7cae3b545a812db4133d (diff)
parentcf41c783708b5b029b1d5fcb3dd9f06ee79fa532 (diff)
Merge pull request #483 from GriffinRichards/remove-berry-fix
Remove berry fix
Diffstat (limited to 'berry_fix/payload/asm/macros/function.inc')
-rw-r--r--berry_fix/payload/asm/macros/function.inc29
1 files changed, 0 insertions, 29 deletions
diff --git a/berry_fix/payload/asm/macros/function.inc b/berry_fix/payload/asm/macros/function.inc
deleted file mode 100644
index 67fb373a8..000000000
--- a/berry_fix/payload/asm/macros/function.inc
+++ /dev/null
@@ -1,29 +0,0 @@
- .macro arm_func_start name
- .align 2, 0
- .global \name
- .arm
- .type \name, function
- .endm
-
- .macro arm_func_end name
- .size \name, .-\name
- .endm
-
- .macro thumb_func_start name
- .align 2, 0
- .global \name
- .thumb
- .thumb_func
- .type \name, function
- .endm
-
- .macro non_word_aligned_thumb_func_start name
- .global \name
- .thumb
- .thumb_func
- .type \name, function
- .endm
-
- .macro thumb_func_end name
- .size \name, .-\name
- .endm