Initial revision
[sbcl.git] / src / runtime / lispregs.h
1 /*
2  * This software is part of the SBCL system. See the README file for
3  * more information.
4  *
5  * This software is derived from the CMU CL system, which was
6  * written at Carnegie Mellon University and released into the
7  * public domain. The software is in the public domain and is
8  * provided with absolutely no warranty. See the COPYING and CREDITS
9  * files for more information.
10  */
11
12 /*
13  * $Header$
14  */
15
16 #if defined(mips) || defined(irix)
17 #include "mips-lispregs.h"
18 #endif
19
20 #ifdef sparc
21 #include "sparc-lispregs.h"
22 #endif
23
24 #ifdef ibmrt
25 #include "rt-lispregs.h"
26 #endif
27
28 #ifdef __i386__
29 #include "x86-lispregs.h"
30 #endif
31
32 #ifdef parisc
33 #include "hppa-lispregs.h"
34 #endif
35
36 #ifdef alpha
37 #include "alpha-lispregs.h"
38 #endif
39
40 #ifndef LANGUAGE_ASSEMBLY
41 extern char *lisp_register_names[];
42 #endif