diff options
author | twinaphex | 2012-12-02 18:06:01 +0100 |
---|---|---|
committer | twinaphex | 2012-12-02 18:06:01 +0100 |
commit | 1cb2b455712a0c9ae814b441a5a46e24e32a808c (patch) | |
tree | a355bc7e46c9577f358281259e32024100ac6d6a /libpcsxcore/ppc/ppc.c | |
parent | 01f0020f8c4d96ce7ff425c0cab66ad93bf2159c (diff) | |
parent | a1a232ad65a5c15314cbfe753f734a0a3ad6cef5 (diff) | |
download | pcsx_rearmed-1cb2b455712a0c9ae814b441a5a46e24e32a808c.tar.gz pcsx_rearmed-1cb2b455712a0c9ae814b441a5a46e24e32a808c.tar.bz2 pcsx_rearmed-1cb2b455712a0c9ae814b441a5a46e24e32a808c.zip |
Merge git://github.com/notaz/pcsx_rearmed
Diffstat (limited to 'libpcsxcore/ppc/ppc.c')
-rw-r--r-- | libpcsxcore/ppc/ppc.c | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/libpcsxcore/ppc/ppc.c b/libpcsxcore/ppc/ppc.c deleted file mode 100644 index efaf8b6..0000000 --- a/libpcsxcore/ppc/ppc.c +++ /dev/null @@ -1,32 +0,0 @@ -/* - * ix86 core v0.5.1 - * Authors: linuzappz <linuzappz@pcsx.net> - * alexey silinov - */ - -#include <stdio.h> -#include <string.h> - -#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() { -} - |