mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
c8f4d66b00
* Mostly document fault and fault_drawer * FaultDrawer printf functions return s32 * Review Suggestions for comments Co-authored-by: EllipticEllipsis <73679967+EllipticEllipsis@users.noreply.github.com> * Some further review suggestions * Further changes from suggestions * Fix Fault_AddClient doc comment * Bug comment for memdump overrun, add more to Fault_PadCallback bug comment * mb -> MB, comment about bss above externs * Fix color codes Co-authored-by: EllipticEllipsis <73679967+EllipticEllipsis@users.noreply.github.com>
25 lines
416 B
ArmAsm
25 lines
416 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 .bss
|
|
|
|
.balign 16
|
|
|
|
glabel sFaultInstance
|
|
.space 4
|
|
|
|
glabel sFaultAwaitingInput
|
|
.space 4
|
|
|
|
glabel sFaultStack
|
|
.space 0x600
|
|
|
|
glabel sFaultThreadInfo
|
|
.space 0x20
|
|
|
|
glabel gFaultMgr
|
|
.space 0x850
|