bugfix
[picodrive.git] / cpu / sh2 / compiler.c
CommitLineData
41397701 1#include "../sh2.h"
2
3void 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