svp compiler: more ops, idle detection

git-svn-id: file:///home/notaz/opt/svn/PicoDrive@364 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
notaz 2008-02-26 22:04:37 +00:00
parent b9c1d0129a
commit d274c33b6b
3 changed files with 192 additions and 54 deletions

View file

@ -51,9 +51,15 @@ typedef struct
#define SSP_WAIT_30FE08 0x8000 // same for 30FE08
#define SSP_WAIT_MASK 0xe000
unsigned int emu_status; // 484
unsigned int rom_ptr; // 488 recompiler convenience
unsigned int iram_ptr; // 48c
unsigned int dram_ptr; // 490
/* used by recompiler only: */
unsigned int ptr_rom; // 488
unsigned int ptr_iram; // 48c
unsigned int ptr_dram; // 490
/*
unsigned int blocktab;
unsigned int blocktab_iram;
unsigned int iram_context;
*/
unsigned int pad[27];
} ssp1601_t;