mirror of
https://gitlab.com/dk64_decomp/dk64.git
synced 2024-11-23 07:01:58 +00:00
20 lines
237 B
ArmAsm
20 lines
237 B
ArmAsm
.set noat
|
|
.set noreorder
|
|
.set gp=64
|
|
.macro glabel label
|
|
.global \label
|
|
\label:
|
|
.endm
|
|
|
|
.macro dlabel label
|
|
.global \label
|
|
\label:
|
|
.endm
|
|
|
|
.macro jlabel label
|
|
.global \label
|
|
\label:
|
|
.endm
|
|
|
|
.macro endlabel label
|
|
.endm |