summaryrefslogtreecommitdiff
path: root/berry_fix/payload/asm/macros/function.inc
diff options
context:
space:
mode:
authorGriffinR <griffin.g.richards@gmail.com>2022-01-13 15:26:20 -0500
committerGriffinR <griffin.g.richards@gmail.com>2022-01-13 15:26:20 -0500
commitfd7457b05a1b109ae42cb4a956266b6acebb5644 (patch)
treea2605c87adafa4cdf7c497df405f0dbfeeac07fa /berry_fix/payload/asm/macros/function.inc
parent4024b3f1b3a9d51e42fc8a49cf361bd22484c82f (diff)
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