source: rtems/cpukit/score/cpu/mips/rtems/score/types.h @ a1f9934a

4.115
Last change on this file since a1f9934a was a1f9934a, checked in by Mathew Kallada <matkallada@…>, on 01/04/13 at 15:01:21

score: Doxygen Clean Up Task #3

  • Property mode set to 100644
File size: 999 bytes
Line 
1/**
2 * @file rtems/score/types.h
3 *
4 * @brief Type Definitions Pertaining to the MIPS Processor Family
5 *
6 *  This include file contains type definitions pertaining to the MIPS
7 *  processor family.
8 */
9
10/*
11 *  COPYRIGHT (c) 1989-2001.
12 *  On-Line Applications Research Corporation (OAR).
13 *
14 *  The license and distribution terms for this file may be
15 *  found in the file LICENSE in this distribution or at
16 *  http://www.rtems.com/license/LICENSE.
17 */
18/* @(#)mipstypes.h       08/20/96     1.4 */
19
20#ifndef _RTEMS_SCORE_TYPES_H
21#define _RTEMS_SCORE_TYPES_H
22
23/**
24 *  @defgroup ScoreTypes MIPS Processor Family Type Definitions
25 *
26 *  @ingroup Score
27 *
28 */
29/**@{*/
30
31#include <rtems/score/basedefs.h>
32
33#ifndef ASM
34
35#ifdef __cplusplus
36extern "C" {
37#endif
38
39/*
40 *  This section defines the basic types for this processor.
41 */
42
43typedef uint16_t     Priority_bit_map_Control;
44typedef void mips_isr;
45typedef void ( *mips_isr_entry )( void );
46
47#ifdef __cplusplus
48}
49#endif
50
51#endif  /* !ASM */
52
53/**@}*/
54#endif
Note: See TracBrowser for help on using the repository browser.