summaryrefslogtreecommitdiff
path: root/sys/arch/arm/include/swi.h
blob: 3bf48fb810c4f73e776e1484b7b12e59da8e6b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*	$NetBSD: swi.h,v 1.1 2002/01/13 15:03:06 bjh21 Exp $	*/

/*
 * This file is in the Public Domain.
 * Ben Harris, 2002.
 */

#ifndef _ARM_SWI_H_
#define _ARM_SWI_H_

#define SWI_OS_MASK	0xf00000
#define SWI_OS_RISCOS	0x000000
#define SWI_OS_RISCIX	0x800000
#define SWI_OS_LINUX	0x900000
#define SWI_OS_NETBSD	0xa00000
#define SWI_OS_ARM	0xf00000

#define SWI_IMB		0xf00000
#define SWI_IMBrange	0xf00001

#endif