32x: sh2 wip, main SH2 BIOS passes

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@782 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2009-09-17 20:34:33 +00:00
parent eaa10a6eb8
commit acd35d4c08
5 changed files with 283 additions and 34 deletions

View file

@ -1,5 +1,5 @@
// common code for Pico.c and cd/Pico.c
// (c) Copyright 2007,2008 Grazvydas "notaz" Ignotas
// (c) Copyright 2007-2009 Grazvydas "notaz" Ignotas
#define CYCLES_M68K_LINE 488 // suitable for both PAL/NTSC
#define CYCLES_M68K_VINT_LAG 68
@ -15,9 +15,16 @@
}
// CPUS_RUN
#ifndef RUN_SH2S
#define RUN_SH2S
#endif
#ifndef PICO_CD
#define CPUS_RUN(m68k_cycles,s68k_cycles) \
SekRunM68k(m68k_cycles);
{ \
SekRunM68k(m68k_cycles); \
RUN_SH2S \
}
#else
#define CPUS_RUN(m68k_cycles,s68k_cycles) \
{ \