mirror of
https://github.com/n64decomp/sm64.git
synced 2024-11-11 20:05:01 -05:00
18 lines
219 B
C++
18 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
|