diff src/sexypsf/PsxHLE.c @ 12:3da1b8942b8b trunk

[svn] - remove src/Input src/Output src/Effect src/General src/Visualization src/Container
author nenolod
date Mon, 18 Sep 2006 03:14:20 -0700
parents src/Input/sexypsf/PsxHLE.c@13389e613d67
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/sexypsf/PsxHLE.c	Mon Sep 18 03:14:20 2006 -0700
@@ -0,0 +1,93 @@
+/*  Pcsx - Pc Psx Emulator
+ *  Copyright (C) 1999-2002  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  02110-1301  USA
+ */
+
+
+#include "PsxCommon.h"
+
+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]();
+	//else
+	// printf("Unknown A0: %08x\n",call);
+	psxBranchTest();
+}
+
+static void hleB0() {
+	u32 call = psxRegs.GPR.n.t1 & 0xff;
+
+	if (biosB0[call]) biosB0[call]();
+        //else
+        // printf("Unknown B0: %08x\n",call);
+
+	psxBranchTest();
+}
+
+static void hleC0() {
+	u32 call = psxRegs.GPR.n.t1 & 0xff;
+
+	if (biosC0[call]) biosC0[call]();
+        //else
+        // printf("Unknown C0: %08x\n",call);
+
+	psxBranchTest();
+}
+
+static void hleBootstrap() { // 0xbfc00000
+	//SysPrintf("hleBootstrap\n");
+}
+
+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;
+} PACKSTRUCT EXEC;
+
+static void hleExecRet() {
+	EXEC *header = (EXEC*)PSXM(psxRegs.GPR.n.s0);
+
+	//SysPrintf("ExecRet %x: %x\n", psxRegs.GPR.n.s0, header->ret);
+
+	psxRegs.GPR.n.ra = BFLIP32(header->ret);
+	psxRegs.GPR.n.sp = BFLIP32(header->_sp);
+	psxRegs.GPR.n.s8 = BFLIP32(header->_fp);
+	psxRegs.GPR.n.gp = BFLIP32(header->_gp);
+	psxRegs.GPR.n.s0 = BFLIP32(header->base);
+
+	psxRegs.GPR.n.v0 = 1;
+	psxRegs.pc = psxRegs.GPR.n.ra;
+}
+
+void (*psxHLEt[256])() = {
+	hleDummy, hleA0, hleB0, hleC0,
+	hleBootstrap, hleExecRet
+};