mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-24 19:25:29 -05:00
25 lines
337 B
PHP
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
|