sly1/include/macro.inc
2024-04-26 10:50:10 -06:00

10 lines
142 B
C++

.macro glabel label
.global \label
.type \label, @function
\label:
.endm
.macro dlabel label
.global \label
\label:
.endm