zig/lib/libc/include/generic-netbsd/machine/swi.h
Alex Rønne Petersen 553cb3ed46
libc: Add NetBSD system and libc headers from 10.1.
sys/param.h was manually adjusted to not define __NetBSD_Version__ since it will
be defined by the compiler.
2025-05-17 04:41:27 +02:00

21 lines
No EOL
412 B
C
Vendored

/* $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