mirror of
https://gitlab.com/kholdfuzion/goldeneye_src
synced 2026-05-23 22:45:22 -04:00
20 lines
262 B
C++
20 lines
262 B
C++
# Assembly Macros
|
|
|
|
.macro glabel label
|
|
.global \label
|
|
.balign 4
|
|
.type \label, @function
|
|
\label:
|
|
.endm
|
|
|
|
.macro dlabel label
|
|
.global \label
|
|
\label:
|
|
.endm
|
|
|
|
.macro jlabel label
|
|
.global \label
|
|
.type \label, @function
|
|
\label:
|
|
.endm
|