The first commit

This commit is contained in:
Banjo Kazooie
2022-07-15 17:09:41 -05:00
commit dd13d34074
1087 changed files with 391897 additions and 0 deletions

25
include/macro.inc Normal file
View File

@@ -0,0 +1,25 @@
# Assembly Macros
.set K0BASE, 0x80000000
.set K1BASE, 0xA0000000
.set K2BASE, 0xC0000000
.macro glabel label
.global \label
.ent \label
.balign 4
\label:
.endm
.macro dlabel label
.global \label
\label:
.endm
.macro endlabel label
.end \label
.endm
.macro .word32 x
.word \x
.endm