Home | History | Annotate | Line # | Download | only in include
      1 /*	$NetBSD: swi.h,v 1.1 2002/01/13 15:03:06 bjh21 Exp $	*/
      2 
      3 /*
      4  * This file is in the Public Domain.
      5  * Ben Harris, 2002.
      6  */
      7 
      8 #ifndef _ARM_SWI_H_
      9 #define _ARM_SWI_H_
     10 
     11 #define SWI_OS_MASK	0xf00000
     12 #define SWI_OS_RISCOS	0x000000
     13 #define SWI_OS_RISCIX	0x800000
     14 #define SWI_OS_LINUX	0x900000
     15 #define SWI_OS_NETBSD	0xa00000
     16 #define SWI_OS_ARM	0xf00000
     17 
     18 #define SWI_IMB		0xf00000
     19 #define SWI_IMBrange	0xf00001
     20 
     21 #endif
     22 
     23