summaryrefslogtreecommitdiffstats
path: root/c/src/exec/score/cpu/i960/i960types.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1995-05-26 16:04:33 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1995-05-26 16:04:33 +0000
commit84b7e72a90cb3983702a33e8de1a3f756f06c81f (patch)
treebf012296abce7ca0b999c4ebfb5272804af87e76 /c/src/exec/score/cpu/i960/i960types.h
parentTrying to force back onto trunk (diff)
downloadrtems-84b7e72a90cb3983702a33e8de1a3f756f06c81f.tar.bz2
Created rest of CP types.h files
Diffstat (limited to '')
-rw-r--r--c/src/exec/score/cpu/i960/i960types.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/c/src/exec/score/cpu/i960/i960types.h b/c/src/exec/score/cpu/i960/i960types.h
new file mode 100644
index 0000000000..eed649a043
--- /dev/null
+++ b/c/src/exec/score/cpu/i960/i960types.h
@@ -0,0 +1,56 @@
+/* i960types.h
+ *
+ * This include file contains type definitions pertaining to the Intel
+ * i960 processor family.
+ *
+ * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
+ * On-Line Applications Research Corporation (OAR).
+ * All rights assigned to U.S. Government, 1994.
+ *
+ * This material may be reproduced by or for the U.S. Government pursuant
+ * to the copyright license under the clause at DFARS 252.227-7013. This
+ * notice must appear in all copies of this file and its derivatives.
+ *
+ * $Id$
+ */
+
+#ifndef __i960_TYPES_h
+#define __i960_TYPES_h
+
+#ifndef ASM
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/*
+ * This section defines the basic types for this processor.
+ */
+
+typedef unsigned char unsigned8; /* unsigned 8-bit integer */
+typedef unsigned short unsigned16; /* unsigned 16-bit integer */
+typedef unsigned int unsigned32; /* unsigned 32-bit integer */
+typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
+
+typedef unsigned32 Priority_Bit_map_control;
+
+typedef char signed8; /* signed 8-bit integer */
+typedef short signed16; /* signed 16-bit integer */
+typedef int signed32; /* signed 32-bit integer */
+typedef long long signed64; /* signed 64-bit integer */
+
+typedef unsigned32 boolean; /* Boolean value */
+
+typedef float single_precision; /* single precision float */
+typedef double double_precision; /* double precision float */
+
+typedef void ( *i960_isr )( void );
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* !ASM */
+
+#endif
+/* end of include file */