sm64/include/macros.inc

18 lines
219 B
PHP
Raw Permalink Normal View History

2023-08-17 08:56:02 -04:00
#ifndef VERSION_CN
.set gp=64
#endif
2019-08-25 00:46:40 -04:00
2023-08-17 08:56:02 -04:00
.equ K0BASE, 0x80000000
.equ K1BASE, 0xA0000000
.equ K2BASE, 0xC0000000
2019-08-25 00:46:40 -04:00
.macro glabel label
.global \label
2019-10-05 15:08:05 -04:00
.balign 4
2019-08-25 00:46:40 -04:00
\label:
.endm
2019-10-05 15:08:05 -04:00
.macro .word32 x
.word \x
.endm