From 28bd1fcb797ea86e92eea358c124eede6bdf62c0 Mon Sep 17 00:00:00 2001 From: "SND\\weimingzhi_cp" Date: Tue, 7 Sep 2010 00:55:05 +0000 Subject: ported the change in r56828 to dynarec (is the check in psxBASIC() really necessary?), removed powerpc dynarec (cannot test and likely broken). git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@56896 e17a0e51-4ae3-4d35-97c3-1a29b211df97 --- libpcsxcore/ppc/ppc.c | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 libpcsxcore/ppc/ppc.c (limited to 'libpcsxcore/ppc/ppc.c') diff --git a/libpcsxcore/ppc/ppc.c b/libpcsxcore/ppc/ppc.c deleted file mode 100644 index efaf8b6d..00000000 --- a/libpcsxcore/ppc/ppc.c +++ /dev/null @@ -1,32 +0,0 @@ -/* - * ix86 core v0.5.1 - * Authors: linuzappz - * alexey silinov - */ - -#include -#include - -#include "ppc.h" - -// General Purpose hardware registers -int cpuHWRegisters[NUM_HW_REGISTERS] = { - 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 -}; - -u32 *ppcPtr; - -void ppcInit() { -} -void ppcSetPtr(u32 *ptr) { - ppcPtr = ptr; -} -void ppcAlign(int bytes) { - // forward align - ppcPtr = (u32*)(((u32)ppcPtr + bytes) & ~(bytes - 1)); -} - -void ppcShutdown() { -} - -- cgit v1.2.3