source: rtems/cpukit/score/cpu/avr/rtems/score/types.h @ 46d3c6d8

4.115
Last change on this file since 46d3c6d8 was 46d3c6d8, checked in by Gedare Bloom <gedare@…>, on 03/16/15 at 20:15:55

cpukit: add and use CPU_Uint32ptr type

  • Property mode set to 100644
File size: 889 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Intel AVR CPU Type Definitions
5 *
6 * This include file contains type definitions pertaining to the Intel
7 * avr 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
34/** Type that can store a 32-bit integer or a pointer. */
35typedef unsigned long CPU_Uint32ptr;
36
37typedef uint16_t     Priority_bit_map_Word;
38typedef void avr_isr;
39typedef void ( *avr_isr_entry )( void );
40
41#ifdef __cplusplus
42}
43#endif
44
45#endif  /* !ASM */
46
47#endif
Note: See TracBrowser for help on using the repository browser.