source: rtems/cpukit/score/cpu/bfin/rtems/score/types.h @ 10bf8e69

4.104.114.84.95
Last change on this file since 10bf8e69 was 795da078, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/17/06 at 05:58:06

2006-11-17 Ralf Corsépius <ralf.corsepius@…>

  • rtems/score/types.h: Remove unsigned64, signed64.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 *  This include file contains type definitions pertaining to the
3 *  Blackfin processor family.
4 *
5 *  COPYRIGHT (c) 1989-2006.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#ifndef _RTEMS_SCORE_TYPES_H
16#define _RTEMS_SCORE_TYPES_H
17
18#ifndef ASM
19
20#include <rtems/stdint.h>
21
22#ifdef __cplusplus
23extern "C" {
24#endif
25
26/*
27 *  This section defines the basic types for this processor.
28 */
29
30/** This defines the type for a priority bit map entry. */
31typedef uint16_t Priority_Bit_map_control;
32
33/** This defines the type for a Boolean value, */
34typedef uint32_t boolean;     /* Boolean value   */
35
36/** This defines the type for a single precision float. */
37typedef float          single_precision;
38/** This defines the type for a double precision float. */
39typedef double         double_precision;
40
41/** This defines the return type for an ISR entry point. */
42typedef void blackfin_isr;
43
44/** This defines the prototype for an ISR entry point. */
45typedef blackfin_isr ( *blackfin_isr_entry )( void );
46
47#ifdef __cplusplus
48}
49#endif
50
51#endif  /* !ASM */
52
53#endif
Note: See TracBrowser for help on using the repository browser.