mirror of
https://github.com/pret/pmd-sky.git
synced 2026-03-21 17:25:15 -05:00
30 lines
423 B
PHP
30 lines
423 B
PHP
#pragma once
|
|
|
|
.macro arm_func_start name
|
|
.balign 4, 0
|
|
.global \name
|
|
.type \name, @function
|
|
.arm
|
|
.endm
|
|
|
|
.macro arm_func_end name
|
|
.size \name, .-\name
|
|
.endm
|
|
|
|
.macro thumb_func_start name
|
|
.balign 4, 0
|
|
.global \name
|
|
.type \name, @function
|
|
.thumb
|
|
.endm
|
|
|
|
.macro non_word_aligned_thumb_func_start name
|
|
.global \name
|
|
.type \name, @function
|
|
.thumb
|
|
.endm
|
|
|
|
.macro thumb_func_end name
|
|
.size \name, .-\name
|
|
.endm
|