portal64-still-alive/asm/macros.inc

16 lines
200 B
PHP
Raw Normal View History

2022-02-27 18:41:51 -05:00
# 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