mirror of
https://github.com/pret/pmd-sky.git
synced 2026-05-02 19:25:57 -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
|