xref: /f-stack/freebsd/arm/include/swi.h (revision 22ce4aff)
1 /*	$NetBSD: swi.h,v 1.1 2002/01/13 15:03:06 bjh21 Exp $	*/
2 /* $FreeBSD$ */
3 
4 /*-
5  * This file is in the Public Domain.
6  * Ben Harris, 2002.
7  */
8 
9 #ifndef _MACHINE_SWI_H_
10 #define _MACHINE_SWI_H_
11 
12 #define SWI_OS_MASK	0xf00000
13 #define SWI_OS_RISCOS	0x000000
14 #define SWI_OS_RISCIX	0x800000
15 #define SWI_OS_LINUX	0x900000
16 #define SWI_OS_NETBSD	0xa00000
17 #define SWI_OS_ARM	0xf00000
18 
19 #define SWI_IMB		0xf00000
20 #define SWI_IMBrange	0xf00001
21 
22 #endif /* !_MACHINE_SWI_H_ */
23