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

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

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