Archived
1
0
Fork 0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
sm64/include/macros.inc
2021-07-12 23:17:54 -04:00

15 lines
201 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