mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 20:12:30 +01:00
e1766601f8
* Fix script disasm * Stuff * Work on libultra * More Libultra Work * My Libultra work for now * Fix all OS warnings * fix gitignore
14 lines
373 B
ArmAsm
14 lines
373 B
ArmAsm
.include "macro.inc"
|
|
|
|
# assembler directives
|
|
.set noat # allow manual use of $at
|
|
.set noreorder # don't insert nops after branches
|
|
.set gp=64 # allow use of 64-bit general purpose registers
|
|
|
|
.section .text, "ax"
|
|
|
|
glabel __osGetCause
|
|
/* 47A60 8006C660 40026800 */ mfc0 $v0, $13
|
|
/* 47A64 8006C664 03E00008 */ jr $ra
|
|
/* 47A68 8006C668 00000000 */ nop
|