Diff for /xmil/common.h between versions 1.7 and 1.8

version 1.7, 2004/08/15 12:32:11 version 1.8, 2004/08/18 15:42:28
Line 28  enum { Line 28  enum {
 #endif  #endif
   
 #ifndef STOREINTELDWORD  #ifndef STOREINTELDWORD
 #define STOREINTELDWORD(a, b)   *((a)+0) = (BYTE)((b));                 \  #define STOREINTELDWORD(a, b)   *((a)+0) = (UINT8)((b));                \
                                                                 *((a)+1) = (BYTE)((b)>>8);              \                                                                  *((a)+1) = (UINT8)((b)>>8);             \
                                                                 *((a)+2) = (BYTE)((b)>>16);             \                                                                  *((a)+2) = (UINT8)((b)>>16);    \
                                                                 *((a)+3) = (BYTE)((b)>>24)                                                                  *((a)+3) = (UINT8)((b)>>24)
 #endif  #endif
   
 #ifndef STOREINTELWORD  #ifndef STOREINTELWORD
 #define STOREINTELWORD(a, b)    *((a)+0) = (BYTE)((b));                 \  #define STOREINTELWORD(a, b)    *((a)+0) = (UINT8)((b));                        \
                                                                 *((a)+1) = (BYTE)((b)>>8)                                                                  *((a)+1) = (UINT8)((b)>>8)
 #endif  #endif
   
 #ifndef NELEMENTS  #ifndef NELEMENTS

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


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