mirror of
https://github.com/TheOnlyZac/sly1.git
synced 2024-11-23 13:49:54 +00:00
11 lines
143 B
C++
11 lines
143 B
C++
.macro glabel label
|
|
.global \label
|
|
.type \label, @function
|
|
\label:
|
|
.endm
|
|
|
|
.macro dlabel label
|
|
.global \label
|
|
\label:
|
|
.endm
|