mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@810 be3aeb3a-fb24-0410-a615-afba39da0efa
10 lines
133 B
C
10 lines
133 B
C
#include "../sh2.h"
|
|
|
|
void sh2_execute(SH2 *sh2, int cycles)
|
|
{
|
|
unsigned int pc = sh2->pc;
|
|
int op;
|
|
|
|
op = p32x_sh2_read16(pc);
|
|
}
|
|
|