mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
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:
parent
1d29444dfc
commit
4139770121
16 changed files with 227 additions and 205 deletions
10
cpu/sh2/compiler.c
Normal file
10
cpu/sh2/compiler.c
Normal 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);
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue