sotn-decomp/include/macro.inc
Mark Street 20c3370f4f
Use allegrex assembler for PSP (#1424)
I moved *some* of the PSX-specific stuff out of the common `Makefile`
and into the `Makefile.psx.mk` -- there is still more that could be done
here, but this should be enough to have the correct rules for PSX and
PSP with the desired assembler.


Also threw in a bonus feature where I've removed the `move` macro from
`macro.inc` because `maspsx` does this automagically for you now.
2024-07-22 15:36:28 -04:00

15 lines
144 B
C++

.macro jlabel label
glabel \label
.endm
.macro glabel label
.global \label
\label:
.endm
.macro .def #
.endm
.include "gte.inc"