2020-04-13 23:03:10 +00:00
|
|
|
.include "macro.inc"
|
|
|
|
|
|
|
|
# assembler directives
|
|
|
|
.set noat # allow manual use of $at
|
|
|
|
.set noreorder # don't insert nops after branches
|
2020-05-26 22:09:00 +00:00
|
|
|
.set gp=64 # allow use of 64-bit general purpose registers
|
2020-04-13 23:03:10 +00:00
|
|
|
|
|
|
|
.section .bss
|
|
|
|
|
2023-01-02 10:52:56 +00:00
|
|
|
# Note: This file is only included in the MATCHING build, the data is imported for non-matching
|
|
|
|
|
2020-05-26 22:09:00 +00:00
|
|
|
.balign 16
|
|
|
|
|
2022-02-02 21:43:34 +00:00
|
|
|
glabel sFaultInstance
|
2020-04-13 23:03:10 +00:00
|
|
|
.space 4
|
|
|
|
|
2022-02-02 21:43:34 +00:00
|
|
|
glabel sFaultAwaitingInput
|
2020-04-13 23:03:10 +00:00
|
|
|
.space 4
|
|
|
|
|
|
|
|
glabel sFaultStack
|
|
|
|
.space 0x600
|
|
|
|
|
|
|
|
glabel sFaultThreadInfo
|
|
|
|
.space 0x20
|
|
|
|
|
2022-02-02 21:43:34 +00:00
|
|
|
glabel gFaultMgr
|
2020-04-13 23:03:10 +00:00
|
|
|
.space 0x850
|