summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1995-05-26 16:05:08 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1995-05-26 16:05:08 +0000
commit4e0074bc7b51a8c2186800ba5fa2ef5dd8ff31fd (patch)
tree1e76eef8228c13150193a6d509caf4689c106f2d
parentCreated rest of CP types.h files (diff)
downloadrtems-4e0074bc7b51a8c2186800ba5fa2ef5dd8ff31fd.tar.bz2
Added m68ktypes.h
-rw-r--r--c/src/exec/score/cpu/m68k/m68ktypes.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/c/src/exec/score/cpu/m68k/m68ktypes.h b/c/src/exec/score/cpu/m68k/m68ktypes.h
new file mode 100644
index 0000000000..1c045bc242
--- /dev/null
+++ b/c/src/exec/score/cpu/m68k/m68ktypes.h
@@ -0,0 +1,56 @@
+/* m68ktypes.h
+ *
+ * This include file contains type definitions pertaining to the Motorola
+ * m68xxx 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 __M68k_TYPES_h
+#define __M68k_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 unsigned16 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 ( *m68k_isr )( void );
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* !ASM */
+
+#endif
+/* end of include file */