source: rtems/cpukit/score/cpu/sparc64/rtems/score/types.h @ 71d97c9

4.115
Last change on this file since 71d97c9 was 71d97c9, checked in by Gedare Bloom <gedare@…>, on 12/08/14 at 18:16:37

sparc64: put each copyright on one line

  • Property mode set to 100644
File size: 794 bytes
Line 
1/**
2 * @file
3 *
4 * @brief SPARC64 CPU Type Definitions
5 *
6 * This include file contains type definitions pertaining to the
7 * SPARC-v9 processor family.
8 */
9
10/*
11 *  COPYRIGHT (c) 1989-1999. On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#ifndef _RTEMS_SCORE_TYPES_H
19#define _RTEMS_SCORE_TYPES_H
20
21#include <rtems/score/basedefs.h>
22
23#ifndef ASM
24
25#ifdef __cplusplus
26extern "C" {
27#endif
28
29/*
30 *  This section defines the basic types for this processor.
31 */
32
33typedef uint16_t         Priority_bit_map_Word;
34typedef void sparc_isr;
35typedef void ( *sparc_isr_entry )( void );
36
37#ifdef __cplusplus
38}
39#endif
40
41#endif  /* !ASM */
42
43#endif
Note: See TracBrowser for help on using the repository browser.