summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/or32/rtems/score/types.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-04-23 04:56:01 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-04-23 04:56:01 +0000
commit6a88b80664a6f237b88d43dc2ee51852a3e07f6f (patch)
tree894316f723cfe1549aee7a5c5fe3dd78d7e40110 /cpukit/score/cpu/or32/rtems/score/types.h
parent2005-04-23 Ralf Corsepius <ralf.corsepius@rtems.org> (diff)
downloadrtems-6a88b80664a6f237b88d43dc2ee51852a3e07f6f.tar.bz2
Remove (Obsolete).
Diffstat (limited to '')
-rw-r--r--cpukit/score/cpu/or32/rtems/score/types.h67
1 files changed, 0 insertions, 67 deletions
diff --git a/cpukit/score/cpu/or32/rtems/score/types.h b/cpukit/score/cpu/or32/rtems/score/types.h
deleted file mode 100644
index 1e511a9c70..0000000000
--- a/cpukit/score/cpu/or32/rtems/score/types.h
+++ /dev/null
@@ -1,67 +0,0 @@
-/**
- * @file rtems/score/types.h
- */
-
-/*
- * This include file contains type definitions pertaining to the Opencores
- * or1k processor family.
- *
- * COPYRIGHT (c) 1989-1999.
- * 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.com/license/LICENSE.
- *
- * This file adapted from no_cpu example of the RTEMS distribution.
- * The body has been modified for the Opencores Or1k implementation by
- * Chris Ziomkowski. <chris@asics.ws>
- */
-
-#ifndef _RTEMS_SCORE_TYPES_H
-#define _RTEMS_SCORE_TYPES_H
-
-#ifndef ASM
-
-#include <rtems/stdint.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * This section defines the basic types for this processor.
- */
-
-typedef unsigned long long unsigned64; /* unsigned 64-bit integer */
-
-typedef unsigned16 Priority_Bit_map_control;
-
-typedef signed long long signed64; /* 64 bit signed integer */
-
-typedef unsigned32 boolean; /* Boolean value */
-
-typedef float single_precision; /* single precision float */
-typedef double double_precision; /* double precision float */
-
-typedef void no_cpu_isr;
-typedef void ( *no_cpu_isr_entry )( void );
-
-/*
- * Turns out the that the disable POSIX option doesn't work
- * too well. Specifically, the libc library still wants to know
- * these POSIX values. We'll go ahead and include them here
- * until such time as someone like OAR who is familiar with this
- * can figure out what should really be done.
- */
-
-#define NAME_MAX 255
-#define LINK_MAX 8
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* !ASM */
-
-#endif