summaryrefslogblamecommitdiffstats
path: root/cpukit/score/cpu/no_cpu/rtems/score/types.h
blob: 7587db3cc6add9f47bbe200817904a30f57a4c2a (plain) (tree)
1
2
3
4
5
6
7
8
9




                            


                                                                       
                            
                                                    


                                                           
                                         



        

                            


           

                         







                                                            
                                                          
                                          
 
                                                 
                                                   
 



                                                          
 
                                                           
                        


                                                         







                  
/**
 * @file rtems/score/types.h
 */

/*
 *  This include file contains type definitions pertaining to the Intel
 *  no_cpu processor family.
 *
 *  COPYRIGHT (c) 1989-2006.
 *  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.
 *
 *  $Id$
 */

#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.
 */

/** This defines the type for a priority bit map entry. */
typedef uint16_t Priority_Bit_map_control;

/** This defines the type for a Boolean value, */
typedef uint32_t boolean;     /* Boolean value   */

/** This defines the type for a single precision float. */
typedef float          single_precision;
/** This defines the type for a double precision float. */
typedef double         double_precision;

/** This defines the return type for an ISR entry point. */
typedef void no_cpu_isr;

/** This defines the prototype for an ISR entry point. */
typedef no_cpu_isr ( *no_cpu_isr_entry )( void );

#ifdef __cplusplus
}
#endif

#endif  /* !ASM */

#endif