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

4.104.114.84.95
Last change on this file since d9a6ab3 was d9a6ab3, checked in by Joel Sherrill <joel.sherrill@…>, on 10/23/06 at 17:17:50

2006-10-23 Joel Sherrill <joel@…>

  • .cvsignore, ChangeLog?, Makefile.am, cpu.c, cpu_asm.S, irq.c, preinstall.am, rtems/asm.h, rtems/score/bfin.h, rtems/score/cpu.h, rtems/score/cpu_asm.h, rtems/score/types.h: New files.
  • Property mode set to 100644
File size: 1.4 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 an unsigned 64-bit integer. */
31typedef unsigned long long unsigned64;
32
33/** This defines the type for a priority bit map entry. */
34typedef uint16_t Priority_Bit_map_control;
35
36/** This defines the type for a 64 bit signed integer */
37typedef signed long long signed64;
38
39/** This defines the type for a Boolean value, */
40typedef uint32_t boolean;     /* Boolean value   */
41
42/** This defines the type for a single precision float. */
43typedef float          single_precision;
44/** This defines the type for a double precision float. */
45typedef double         double_precision;
46
47/** This defines the return type for an ISR entry point. */
48typedef void blackfin_isr;
49
50/** This defines the prototype for an ISR entry point. */
51typedef blackfin_isr ( *blackfin_isr_entry )( void );
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif  /* !ASM */
58
59#endif
Note: See TracBrowser for help on using the repository browser.