pmd-sky/sub/asm/macros/function.inc
AnonymousRandomPerson 20e58676c4 Dumped arm7
2023-08-06 16:24:08 -04:00

25 lines
337 B
PHP

.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