summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/avr/rtems/score/types.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2016-01-19 19:38:35 -0600
committerJoel Sherrill <joel@rtems.org>2016-01-19 19:40:42 -0600
commit15068f4c9afd2d5ca6a77d510059d6306c9a3be6 (patch)
treeb18806dddb7870315e9795350f63857d4aa5f7d8 /cpukit/score/cpu/avr/rtems/score/types.h
parentmips/malta: Add per-section compilation and linking support. (diff)
downloadrtems-15068f4c9afd2d5ca6a77d510059d6306c9a3be6.tar.bz2
Remove AVR port
closes #2443.
Diffstat (limited to 'cpukit/score/cpu/avr/rtems/score/types.h')
-rw-r--r--cpukit/score/cpu/avr/rtems/score/types.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/cpukit/score/cpu/avr/rtems/score/types.h b/cpukit/score/cpu/avr/rtems/score/types.h
deleted file mode 100644
index f63f5d5a3b..0000000000
--- a/cpukit/score/cpu/avr/rtems/score/types.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/**
- * @file
- *
- * @brief Intel AVR CPU Type Definitions
- *
- * This include file contains type definitions pertaining to the Intel
- * avr 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.org/license/LICENSE.
- */
-
-#ifndef _RTEMS_SCORE_TYPES_H
-#define _RTEMS_SCORE_TYPES_H
-
-#include <rtems/score/basedefs.h>
-
-#ifndef ASM
-
-#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 unsigned long CPU_Uint32ptr;
-
-typedef uint16_t Priority_bit_map_Word;
-typedef void avr_isr;
-typedef void ( *avr_isr_entry )( void );
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* !ASM */
-
-#endif