svp compiler: all ops implemented, EXT regs left
[picodrive.git] / Pico / carthw / svp / ssp16.h
index f4a5746..481d4d3 100644 (file)
@@ -48,12 +48,18 @@ typedef struct
        #define SSP_PMC_SET             0x0002  // PMAC is set
        #define SSP_WAIT_PM0            0x2000  // bit1 in PM0
        #define SSP_WAIT_30FE06         0x4000  // ssp tight loops on 30FE06 to become non-zero
-       #define SSP_WAIT_30FE08         0x8000  // same for 30FE08
+       #define SSP_WAIT_30FE08         0x8000  // same for 30FE06
        #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_rom;              // 48c
+       unsigned int ptr_dram;                  // 490
+/*
+unsigned int blocktab;
+unsigned int blocktab_iram;
+unsigned int iram_context;
+*/
        unsigned int pad[27];
 } ssp1601_t;