-Changed most of the header guard strings to be a little more verbose
[newos.git] / include / arch / cpu.h
bloba31a54d58505f4375d9a71272ac01d858fbf289c
1 /*
2 ** Copyright 2001-2002, Travis Geiselbrecht. All rights reserved.
3 ** Distributed under the terms of the NewOS License.
4 */
5 #ifndef _NEWOS_ARCH_CPU_H
6 #define _NEWOS_ARCH_CPU_H
8 #ifdef ARCH_i386
9 #include <arch/i386/cpu.h>
10 #endif
11 #ifdef ARCH_sh4
12 #include <arch/sh4/cpu.h>
13 #endif
14 #ifdef ARCH_alpha
15 #include <arch/alpha/cpu.h>
16 #endif
17 #ifdef ARCH_sparc64
18 #include <arch/sparc64/cpu.h>
19 #endif
20 #ifdef ARCH_mips
21 #include <arch/mips/cpu.h>
22 #endif
23 #ifdef ARCH_ppc
24 #include <arch/ppc/cpu.h>
25 #endif
27 #endif