1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#include "dolphin/dvd/dvderror.h"
#include "dolphin/os/OS.h"
static u32 ErrorTable[18] = {
0x00000000,
0x00023A00,
0x00062800,
0x00030200,
0x00031100,
0x00052000,
0x00052001,
0x00052100,
0x00052400,
0x00052401,
0x00052402,
0x000B5A01,
0x00056300,
0x00020401,
0x00020400,
0x00040800,
0x00100007,
0x00000000,
};
#define DIDNT_MATCH 29
static u8 ErrorCode2Num(u32 errorCode) {
u32 i;
for (i = 0; i < 18; i++) {
if (errorCode == ErrorTable[i]) {
ASSERTLINE(0x49, i < DIDNT_MATCH);
return i;
}
}
if (errorCode >= 0x100000 && errorCode <= 0x100008) {
return 17;
}
return DIDNT_MATCH;
}
static u8 Convert(u32 error) {
u32 statusCode;
u32 errorCode;
u8 errorNum;
if (error == 0x01234567) {
return -1;
} else if (error == 0x01234568) {
return -2;
}
statusCode = (error >> 24) & 0xFF;
errorCode = error & 0x00FFFFFF;
errorNum = ErrorCode2Num(errorCode);
if (statusCode >= 6) {
statusCode = 6;
}
return statusCode * 30 + errorNum;
}
void __DVDStoreErrorCode(u32 error)
{
OSSramEx* sram;
u8 num;
num = Convert(error);
sram = __OSLockSramEx();
sram->dvdErrorCode = num;
__OSUnlockSramEx(TRUE);
}
|