[BACK]Return to asm.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / mips / include

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/arch/mips/include/asm.h between version 1.16 and 1.17

version 1.16, 1999/01/31 00:55:41 version 1.17, 1999/02/16 05:06:26
Line 88 
Line 88 
 #  define _C_LABEL(x)   _ ## x  #  define _C_LABEL(x)   _ ## x
 # else  # else
 #  define _C_LABEL(x)   _/**/x  #  define _C_LABEL(x)   _/**/x
   #  define _END_LABEL(x) x/**/End
 # endif  # endif
 #endif  #endif
   
   #ifdef __STDC__
   # define _END_LABEL(x)  x ## End
   #else
   # define _END_LABEL(x)  x/**/End
   #endif
   
 #ifdef USE_AENT  #ifdef USE_AENT
 #define AENT(x)                         \  #define AENT(x)                         \
         .aent   x, 0          .aent   x, 0
Line 205  _C_LABEL(x):
Line 212  _C_LABEL(x):
 _C_LABEL(x):  _C_LABEL(x):
   
 /*  /*
    * VECTOR
    *      exception vector entrypoint
    */
   #define VECTOR(x, regmask)              \
           .ent    _C_LABEL(x),0;          \
           EXPORT(x);                      \
   
   #define VECTOR_END(x)                   \
           .end    _C_LABEL(x);            \
           EXPORT(_END_LABEL(x))
   
   /*
  * Macros to panic and printf from assembly language.   * Macros to panic and printf from assembly language.
  */   */
 #define PANIC(msg)                      \  #define PANIC(msg)                      \

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.17

CVSweb <webmaster@jp.NetBSD.org>