Diff for /np2/i386c/ia32/instructions/arith.mcr between versions 1.2 and 1.4

version 1.2, 2005/03/12 12:33:48 version 1.4, 2011/01/15 18:36:12
Line 1 Line 1
 /*      $Id$    */  
   
 /*  /*
  * Copyright (c) 2004 NONAKA Kimihiro   * Copyright (c) 2004 NONAKA Kimihiro
  * All rights reserved.   * All rights reserved.
Line 33 Line 31
 static UINT32 \  static UINT32 \
 inst##1(UINT32 dst, void *arg) \  inst##1(UINT32 dst, void *arg) \
 { \  { \
         (void)arg; \  
         BYTE_##inst(dst); \          BYTE_##inst(dst); \
         return dst; \          return dst; \
 } \  } \
 static UINT32 \  static UINT32 \
 inst##2(UINT32 dst, void *arg) \  inst##2(UINT32 dst, void *arg) \
 { \  { \
         (void)arg; \  
         WORD_##inst(dst); \          WORD_##inst(dst); \
         return dst; \          return dst; \
 } \  } \
 static UINT32 \  static UINT32 \
 inst##4(UINT32 dst, void *arg) \  inst##4(UINT32 dst, void *arg) \
 { \  { \
         (void)arg; \  
         DWORD_##inst(dst); \          DWORD_##inst(dst); \
         return dst; \          return dst; \
 } \  } \

Removed from v.1.2  
changed lines
  Added in v.1.4


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