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

4.115
Last change on this file since 89b85e51 was 89b85e51, checked in by Sebastian Huber <sebastian.huber@…>, on 07/16/10 at 08:46:29

2010-07-16 Sebastian Huber <sebastian.huber@…>

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