32x: split sh2 code, compiler stub

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@810 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2009-10-08 19:47:31 +00:00
parent 1d29444dfc
commit 4139770121
16 changed files with 227 additions and 205 deletions

10
cpu/sh2/compiler.c Normal file
View file

@ -0,0 +1,10 @@
#include "../sh2.h"
void sh2_execute(SH2 *sh2, int cycles)
{
unsigned int pc = sh2->pc;
int op;
op = p32x_sh2_read16(pc);
}