source: rtems/c/src/exec/score/cpu/sparc/rtems/score/types.h @ 7908ba5b

4.104.114.84.95
Last change on this file since 7908ba5b was 7908ba5b, checked in by Joel Sherrill <joel.sherrill@…>, on 02/18/99 at 18:28:24

Part of the automake VI patch from Ralf Corsepius <corsepiu@…>:

4) rtems-rc-19990202-0.diff /reorg-score-cpu.sh

reorg-score-cpu.sh reorganizes the cpu/<cpu>/* subdirectories in a
similar manner than previous reorg scripts did. rtems-rc-19990202-0.diff
contains the diffs after reorg-score-cpu.sh has been run on a
rtems-19981215 snapshot + my patches up to rtems-rc-19990131-2.diff.

This patch is rather nasty and may break something. However, I've tested
it for about 10 different target/bsp pairs and believe to have shaken
out most bugs.

I wonder about the following .h files that were not moved:

a29k/asm.h
a29k/cpu_asm.h
i386/asm.h
i960/asm.h
m68k/asm.h
m68k/m68302.h
m68k/m68360.h
m68k/qsm.h
m68k/sim.h
mips64orion/asm.h
mips64orion/cpu_asm.h
mips64orion/mips64orion.h
no_cpu/asm.h
no_cpu/cpu_asm.h
powerpc/asm.h
powerpc/mpc860.h
sh/asm.h
sparc/asm.h
sparc/erc32.h

  • Property mode set to 100644
File size: 1.9 KB
Line 
1/*  sparctypes.h
2 *
3 *  This include file contains type definitions pertaining to the
4 *  SPARC processor family.
5 *
6 *  COPYRIGHT (c) 1989-1998.
7 *  On-Line Applications Research Corporation (OAR).
8 *  Copyright assigned to U.S. Government, 1994.
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.OARcorp.com/rtems/license.html.
13 *
14 *  Ported to ERC32 implementation of the SPARC by On-Line Applications
15 *  Research Corporation (OAR) under contract to the European Space
16 *  Agency (ESA).
17 *
18 *  ERC32 modifications of respective RTEMS file: COPYRIGHT (c) 1995.
19 *  European Space Agency.
20 *
21 *  $Id$
22 */
23
24#ifndef __SPARC_TYPES_h
25#define __SPARC_TYPES_h
26
27#ifndef ASM
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33/*
34 *  This section defines the basic types for this processor.
35 */
36
37typedef unsigned char      unsigned8;            /* unsigned 8-bit  integer */
38typedef unsigned short     unsigned16;           /* unsigned 16-bit integer */
39typedef unsigned int       unsigned32;           /* unsigned 32-bit integer */
40typedef unsigned long long unsigned64;           /* unsigned 64-bit integer */
41
42typedef unsigned16         Priority_Bit_map_control;
43
44typedef signed char        signed8;              /* 8-bit  signed integer */
45typedef signed short       signed16;             /* 16-bit signed integer */
46typedef signed int         signed32;             /* 32-bit signed integer */
47typedef signed long long   signed64;             /* 64 bit signed integer */
48
49typedef unsigned32         boolean;              /* Boolean value   */
50
51typedef float              single_precision;     /* single precision float */
52typedef double             double_precision;     /* double precision float */
53
54typedef void sparc_isr;
55typedef void ( *sparc_isr_entry )( void );
56
57#ifdef __cplusplus
58}
59#endif
60
61#endif  /* !ASM */
62
63#endif
64/* end of include file */
Note: See TracBrowser for help on using the repository browser.