summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/moxie/include/rtems/score/types.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2018-03-08 16:16:42 -0600
committerJoel Sherrill <joel@rtems.org>2018-03-12 14:29:39 -0500
commita518ff4ba9846a15e1add2e6b6a7b721fb35339a (patch)
tree47efc00763aab2e5fd2f9805ae9da31018d5ea36 /cpukit/score/cpu/moxie/include/rtems/score/types.h
parentsh/include/rtems/score/types.h: Eliminate this file (diff)
downloadrtems-a518ff4ba9846a15e1add2e6b6a7b721fb35339a.tar.bz2
moxie/include/rtems/score/types.h: Eliminate this file
Updates #3327.
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/moxie/include/rtems/score/types.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/cpukit/score/cpu/moxie/include/rtems/score/types.h b/cpukit/score/cpu/moxie/include/rtems/score/types.h
deleted file mode 100644
index 99402b0208..0000000000
--- a/cpukit/score/cpu/moxie/include/rtems/score/types.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/**
- * @file rtems/score/types.h
- */
-
-/*
- * This file contains information pertaining to the Moxie processor.
- *
- * COPYRIGHT (c) 2011
- * Anthony Green
- *
- * Based on code with the following copyright...
- * COPYRIGHT (c) 1989-1999, 2010.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#ifndef _RTEMS_SCORE_TYPES_H
-#define _RTEMS_SCORE_TYPES_H
-
-#include <rtems/score/basedefs.h>
-
-#ifndef ASM
-
-#include <stdbool.h>
-#include <stdint.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * This section defines the basic types for this processor.
- */
-
-/** Type that can store a 32-bit integer or a pointer. */
-typedef uintptr_t CPU_Uint32ptr;
-
-typedef void moxie_isr;
-typedef void ( *moxie_isr_entry )( void );
-
-#ifdef RTEMS_DEPRECATED_TYPES
-typedef bool boolean; /* Boolean value */
-typedef float single_precision; /* single precision float */
-typedef double double_precision; /* double precision float */
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* !ASM */
-
-#endif