Files
HackerSM64/asm/n64_assert.s
2021-10-17 19:58:47 -04:00

20 lines
278 B
ArmAsm

.include "macros.inc"
.section .data
glabel __n64Assert_Filename
.skip 4
glabel __n64Assert_LineNum
.skip 4
glabel __n64Assert_Message
.skip 4
.section .text
glabel __n64Assert
sw $a0, __n64Assert_Filename
sw $a1, __n64Assert_LineNum
sw $a2, __n64Assert_Message
syscall
nop