You've already forked ultrasm64-2
mirror of
https://github.com/HackerN64/ultrasm64-2.git
synced 2026-01-21 10:38:08 -08:00
19 lines
222 B
C++
19 lines
222 B
C++
#ifdef _LANGUAGE_ASSEMBLY
|
|
#undef _LANGUAGE_C
|
|
#endif
|
|
|
|
.macro glabel label
|
|
.global \label
|
|
.balign 4
|
|
\label:
|
|
.endm
|
|
|
|
.macro gsymbol sym addr
|
|
.global \sym
|
|
.equ \sym, \addr
|
|
.endm
|
|
|
|
.macro .word32 x
|
|
.word \x
|
|
.endm
|