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
2023-08-17 08:56:02 -04:00

17 lines
219 B
C++

#ifndef VERSION_CN
.set gp=64
#endif
.equ K0BASE, 0x80000000
.equ K1BASE, 0xA0000000
.equ K2BASE, 0xC0000000
.macro glabel label
.global \label
.balign 4
\label:
.endm
.macro .word32 x
.word \x
.endm