1
0
mirror of https://github.com/sm64pc/sm64pc.git synced 2025-04-12 00:05:59 +02:00
sm64pc/include/macros.inc
2019-11-03 14:36:27 -05:00

16 lines
200 B
C++

# Assembly Macros
.set K0BASE, 0x80000000
.set K1BASE, 0xA0000000
.set K2BASE, 0xC0000000
.macro glabel label
.global \label
.balign 4
\label:
.endm
.macro .word32 x
.word \x
.endm