RetroArch
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
+
Variables
a
b
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
+
Typedefs
a
b
c
d
e
f
g
i
l
m
o
p
q
r
s
t
u
v
x
+
Enumerations
a
b
c
d
e
f
g
i
k
l
m
o
p
q
r
s
t
v
+
Enumerator
a
b
c
d
e
f
g
i
k
l
m
o
p
r
s
t
u
x
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
Enumerations
+
Enumerator
a
b
c
d
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Properties
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
Related Functions
+
Files
File List
+
File Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Á
á
é
Ά
Ή
Α
Δ
Ε
Κ
Ο
Π
Σ
Ω
α
ε
θ
π
В
И
К
О
П
У
а
в
д
з
и
к
о
п
с
ф
ч
я
オ
キ
ス
チ
デ
レ
上
下
中
右
启
啟
回
実
屏
左
已
巻
支
显
次
聲
过
鍵
需
顯
게
구
너
넷
도
동
되
레
리
버
변
비
사
성
쉐
시
실
애
연
오
이
입
잘
조
죄
중
지
참
코
키
필
화
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Á
á
Ά
Ή
Α
Ε
Κ
Ο
К
П
а
д
з
к
オ
ス
デ
レ
上
下
中
右
启
啟
回
屏
左
巻
支
显
次
聲
顯
너
넷
동
레
버
비
시
잘
중
지
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
é
Δ
Ε
Κ
Π
Σ
Ω
α
ε
θ
π
В
И
К
О
У
в
д
з
и
к
о
п
с
ф
ч
я
キ
チ
実
已
过
鍵
需
게
구
도
되
리
변
사
성
쉐
시
실
애
연
오
이
입
조
죄
참
코
키
필
화
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
wii
libogc
include
ogc
context.h
Go to the documentation of this file.
1
#ifndef __EXCONTEXT_H__
2
#define __EXCONTEXT_H__
3
4
#define NUM_EXCEPTIONS 15
5
6
#define EX_SYS_RESET 0
7
#define EX_MACH_CHECK 1
8
#define EX_DSI 2
9
#define EX_ISI 3
10
#define EX_INT 4
11
#define EX_ALIGN 5
12
#define EX_PRG 6
13
#define EX_FP 7
14
#define EX_DEC 8
15
#define EX_SYS_CALL 9
16
#define EX_TRACE 10
17
#define EX_PERF 11
18
#define EX_IABR 12
19
#define EX_RESV 13
20
#define EX_THERM 14
21
22
#ifndef _LANGUAGE_ASSEMBLY
23
24
#include <
gctypes.h
>
25
26
#ifdef __cplusplus
27
extern
"C"
{
28
#endif
/* __cplusplus */
29
30
typedef
struct
_excption_frame
{
31
u32
EXCPT_Number
;
32
u32
SRR0
,
SRR1
;
33
u32
GPR
[32];
34
u32
GQR
[8];
35
u32
CR
,
LR
,
CTR
,
XER
,
MSR
,
DAR
;
36
37
u16
state
;
//used to determine whether to restore the fpu context or not
38
u16
mode
;
//unused
39
40
f64
FPR
[32];
41
u64
FPSCR
;
42
f64
PSFPR
[32];
43
}
frame_context
;
44
45
#ifdef __cplusplus
46
}
47
#endif
/* __cplusplus */
48
49
#endif
50
51
#endif
_excption_frame::FPSCR
u64 FPSCR
Definition:
context.h:41
_excption_frame::GQR
u32 GQR[8]
Definition:
context.h:34
_excption_frame::EXCPT_Number
u32 EXCPT_Number
Definition:
context.h:31
_excption_frame
Definition:
context.h:30
gctypes.h
Data type definitions.
_excption_frame::SRR0
u32 SRR0
Definition:
context.h:32
_excption_frame::SRR1
u32 SRR1
Definition:
context.h:32
_excption_frame::XER
u32 XER
Definition:
context.h:35
_excption_frame::CR
u32 CR
Definition:
context.h:35
_excption_frame::GPR
u32 GPR[32]
Definition:
context.h:33
_excption_frame::mode
u16 mode
Definition:
context.h:38
_excption_frame::PSFPR
f64 PSFPR[32]
Definition:
context.h:42
_excption_frame::MSR
u32 MSR
Definition:
context.h:35
f64
double f64
Definition:
gctypes.h:44
u16
uint16_t u16
16bit unsigned integer
Definition:
gctypes.h:18
_excption_frame::CTR
u32 CTR
Definition:
context.h:35
_excption_frame::LR
u32 LR
Definition:
context.h:35
_excption_frame::FPR
f64 FPR[32]
Definition:
context.h:40
u64
uint64_t u64
64bit unsigned integer
Definition:
gctypes.h:20
_excption_frame::DAR
u32 DAR
Definition:
context.h:35
_excption_frame::state
u16 state
Definition:
context.h:37
frame_context
struct _excption_frame frame_context
u32
uint32_t u32
32bit unsigned integer
Definition:
gctypes.h:19
Generated by
1.8.15