source: rtems/cpukit/score/cpu/nios2/rtems/score/types.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 806 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Altera Nios II CPU Type Definitions
5 *
6 * This include file contains type definitions pertaining to the
7 * Altera Nios II processor family.
8 */
9
10/*
11 *  COPYRIGHT (c) 1989-1999.
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.org/license/LICENSE.
17 */
18
19#ifndef _RTEMS_SCORE_TYPES_H
20#define _RTEMS_SCORE_TYPES_H
21
22#include <rtems/score/basedefs.h>
23
24#ifndef ASM
25
26#ifdef __cplusplus
27extern "C" {
28#endif
29
30/*
31 *  This section defines the basic types for this processor.
32 */
33
34typedef uint16_t Priority_bit_map_Control;
35typedef void nios2_isr;
36typedef void ( *nios2_isr_entry )( void );
37
38#ifdef __cplusplus
39}
40#endif
41
42#endif  /* !ASM */
43
44#endif
Note: See TracBrowser for help on using the repository browser.