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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
/***************************************************************************
* Copyright (C) 2007 Ryan Schultz, PCSX-df Team, PCSX team *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02111-1307 USA. *
***************************************************************************/
/*
* Internal PSX HLE functions.
*/
#include "psxhle.h"
#if 0
#define PSXHLE_LOG SysPrintf
#else
#define PSXHLE_LOG(...)
#endif
static void hleDummy() {
psxRegs.pc = psxRegs.GPR.n.ra;
psxBranchTest();
}
static void hleA0() {
u32 call = psxRegs.GPR.n.t1 & 0xff;
if (biosA0[call]) biosA0[call]();
psxBranchTest();
}
static void hleB0() {
u32 call = psxRegs.GPR.n.t1 & 0xff;
if (biosB0[call]) biosB0[call]();
psxBranchTest();
}
static void hleC0() {
u32 call = psxRegs.GPR.n.t1 & 0xff;
if (biosC0[call]) biosC0[call]();
psxBranchTest();
}
static void hleBootstrap() { // 0xbfc00000
PSXHLE_LOG("hleBootstrap\n");
CheckCdrom();
LoadCdrom();
PSXHLE_LOG("CdromLabel: \"%s\": PC = %8.8lx (SP = %8.8lx)\n", CdromLabel, psxRegs.pc, psxRegs.GPR.n.sp);
}
typedef struct {
u32 _pc0;
u32 gp0;
u32 t_addr;
u32 t_size;
u32 d_addr;
u32 d_size;
u32 b_addr;
u32 b_size;
u32 S_addr;
u32 s_size;
u32 _sp,_fp,_gp,ret,base;
} EXEC;
static void hleExecRet() {
EXEC *header = (EXEC*)PSXM(psxRegs.GPR.n.s0);
PSXHLE_LOG("ExecRet %x: %x\n", psxRegs.GPR.n.s0, header->ret);
psxRegs.GPR.n.ra = header->ret;
psxRegs.GPR.n.sp = header->_sp;
psxRegs.GPR.n.s8 = header->_fp;
psxRegs.GPR.n.gp = header->_gp;
psxRegs.GPR.n.s0 = header->base;
psxRegs.GPR.n.v0 = 1;
psxRegs.pc = psxRegs.GPR.n.ra;
}
void (*psxHLEt[256])() = {
hleDummy, hleA0, hleB0, hleC0,
hleBootstrap, hleExecRet,
hleDummy, hleDummy
};
|