X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?p=cyclone68000.git;a=blobdiff_plain;f=Cyclone.h;fp=Cyclone.h;h=fdcff59177370a36549c7fa79155184af40ed8ee;hp=1933a46837dcca2b67676e7c15da510f12092480;hb=66dda842eae01f47f5389b931ec9567fb0bbb6a1;hpb=19a2e09532d56379faa16b2a95bff6703a35774f diff --git a/Cyclone.h b/Cyclone.h index 1933a46..fdcff59 100644 --- a/Cyclone.h +++ b/Cyclone.h @@ -48,7 +48,10 @@ struct Cyclone int (*IrqCallback)(int int_level); // [r7,#0x8c] optional irq callback function, see config.h void (*ResetCallback)(void); // [r7,#0x90] if enabled in config.h, calls this whenever RESET opcode is encountered. int (*UnrecognizedCallback)(void); // [r7,#0x94] if enabled in config.h, calls this whenever unrecognized opcode is encountered. - unsigned int internal[6]; // [r7,#0x98] reserved for internal use, do not change. + void *internal_CycloneEnd; // [r7,#0x98] internal, do not modify + int internal_s_cycles; // [r7,#0x9c] internal, do not modify + void *internal_s_CycloneEnd; // [r7,#0xa0] internal, do not modify + unsigned int internal[3]; // [r7,#0xa4] reserved for internal use, do not change. }; // Initialize. Used only if Cyclone was compiled with compressed jumptable, see config.h