32x: split sh2 code, compiler stub
[picodrive.git] / cpu / sh2 / compiler.c
1 #include "../sh2.h"
2
3 void sh2_execute(SH2 *sh2, int cycles)
4 {
5   unsigned int pc = sh2->pc;
6   int op;
7
8   op = p32x_sh2_read16(pc);
9 }
10