NOT setting upper bits on PUSH PC, minor adjustments
[picodrive.git] / cpu / Cyclone / Cyclone.h
index 62a1314..6bce671 100644 (file)
@@ -40,8 +40,8 @@ struct Cyclone
   unsigned short (*fetch16)(unsigned int a);  // [r7,#0x84]\r
   unsigned int   (*fetch32)(unsigned int a);  // [r7,#0x88]\r
   void (*IrqCallback)(int int_level);         // [r7,#0x8c] - optional irq callback function, see config.h\r
-  void (*ResetCallback)();                    // [r7,#0x90] - if enabled in config.h, calls this whenever RESET opcode is encountered.\r
-  int  (*UnrecognizedCallback)();             // [r7,#0x94] - if enabled in config.h, calls this whenever unrecognized opcode is encountered.\r
+  void (*ResetCallback)(void);                // [r7,#0x90] - if enabled in config.h, calls this whenever RESET opcode is encountered.\r
+  int  (*UnrecognizedCallback)(void);         // [r7,#0x94] - if enabled in config.h, calls this whenever unrecognized opcode is encountered.\r
 };\r
 \r
 // used only if Cyclone was compiled with compressed jumptable, see config.h\r