mirror of
https://github.com/pret/pokediamond.git
synced 2026-08-07 19:24:15 -05:00
25 lines
335 B
PHP
25 lines
335 B
PHP
.macro arm_func_start name
|
|
.align 2, 0
|
|
.global \name
|
|
.arm
|
|
.endm
|
|
|
|
.macro arm_func_end name
|
|
.size \name, .-\name
|
|
.endm
|
|
|
|
.macro thumb_func_start name
|
|
.align 2, 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
|