Diff for /np2/macos9/compiler.h between versions 1.9 and 1.11

version 1.9, 2004/02/21 17:52:04 version 1.11, 2004/08/16 08:33:02
Line 1 Line 1
 #include        <string.h>  #include        <string.h>
 #include        <stdio.h>  #include        <stdio.h>
 #include        <stdlib.h>  #include        <stdlib.h>
   #include        <stdarg.h>
 #include        <stddef.h>  #include        <stddef.h>
   #if defined(CPUCORE_IA32)
   #include        <setjmp.h>
   #endif
 #ifndef NP2GCC  #ifndef NP2GCC
 #include        <MultiProcessing.h>  #include        <MultiProcessing.h>
 #endif  #endif
Line 24  typedef unsigned short UINT16; Line 28  typedef unsigned short UINT16;
 typedef signed int              SINT32;  typedef signed int              SINT32;
 typedef unsigned int    UINT32;  typedef unsigned int    UINT32;
   
   typedef SInt64                  SINT64;
   typedef UInt64                  UINT64;
   
 typedef Boolean                 BOOL;  typedef Boolean                 BOOL;
 typedef signed char             TCHAR;  typedef signed char             TCHAR;
 typedef signed char             CHAR;  typedef signed char             CHAR;
Line 66  typedef unsigned char BYTE; Line 73  typedef unsigned char BYTE;
 // #define SUPPORT_NORMALDISP  // #define SUPPORT_NORMALDISP
 #define MEMOPTIMIZE             1  #define MEMOPTIMIZE             1
   
   #if defined(CPUCORE_IA32)
   #define SUPPORT_CRT31KHZ
   #define SUPPORT_PC9821
   #define IA32_PAGING_EACHSIZE
   #endif
 #define SUPPORT_CRT15KHZ  #define SUPPORT_CRT15KHZ
 #define SUPPORT_HOSTDRV  #define SUPPORT_HOSTDRV
 #define SUPPORT_SWSEEKSND  #define SUPPORT_SWSEEKSND
 #define SUPPORT_SASI  #define SUPPORT_SASI
 #define SUPPORT_SCSI  #define SUPPORT_SCSI
   
   #define SUPPORT_RESUME
   #define SUPPORT_STATSAVE
   
 #define SOUNDRESERVE    80  #define SOUNDRESERVE    80
   
   
   #if defined(CPUCORE_IA32)
   #define sigjmp_buf                              jmp_buf
   #define sigsetjmp(env, mask)    setjmp(env)
   #define siglongjmp(env, val)    longjmp(env, val)
   #define msgbox(title, msg)              TRACEOUT(("%s", title)); \
                                                                   TRACEOUT(("%s", msg))
   #endif
   

Removed from v.1.9  
changed lines
  Added in v.1.11


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