Diff for /np2/i286x/i286x.h between versions 1.6 and 1.7

version 1.6, 2004/01/05 05:04:53 version 1.7, 2004/08/03 10:11:37
Line 63 Line 63
 #define I286 __declspec(naked) static void  #define I286 __declspec(naked) static void
 #define I286EXT __declspec(naked) void  #define I286EXT __declspec(naked) void
   
   typedef void (*I286TBL)(void);
   
   
 #define         I286IRQCHECKTERM                                                                \  #define         I286IRQCHECKTERM                                                                \
                                 __asm { xor             eax, eax                                }       \                                  __asm { xor             eax, eax                                }       \
                                 __asm { cmp             I286_REMCLOCK, eax              }       \                                  __asm { cmp             I286_REMCLOCK, eax              }       \
Line 88  extern void __fastcall i286x_localint(vo Line 91  extern void __fastcall i286x_localint(vo
 extern void __fastcall i286x_selector(void);  extern void __fastcall i286x_selector(void);
 extern void removeprefix(void);  extern void removeprefix(void);
   
 extern void (*i286op[])(void);  extern const I286TBL i286op[256];
 extern void (*i286op_repne[])(void);  extern const I286TBL i286op_repne[256];
 extern void (*i286op_repe[])(void);  extern const I286TBL i286op_repe[256];
   
 extern void (*v30op[])(void);  extern I286TBL v30op[256];
 extern void (*v30op_repne[])(void);  extern I286TBL v30op_repne[256];
 extern void (*v30op_repe[])(void);  extern I286TBL v30op_repe[256];
   
 void i286xadr_init(void);  void i286xadr_init(void);
   

Removed from v.1.6  
changed lines
  Added in v.1.7


RetroPC.NET-CVS <cvs@retropc.net>