source: rtems/cpukit/score/cpu/sh/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/*
2 *  This include file contains information pertaining to the Hitachi SH
3 *  processor.
4 *
5 *  Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de) and
6 *           Bernd Becker (becker@faw.uni-ulm.de)
7 *
8 *  COPYRIGHT (c) 1997-1998, FAW Ulm, Germany
9 *
10 *  This program is distributed in the hope that it will be useful,
11 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13 *
14 *
15 *  COPYRIGHT (c) 1998.
16 *  On-Line Applications Research Corporation (OAR).
17 *  Copyright assigned to U.S. Government, 1994.
18 *
19 *  The license and distribution terms for this file may be
20 *  found in the file LICENSE in this distribution or at
21 *  http://www.OARcorp.com/rtems/license.html.
22 *
23 *  $Id$
24 */
25
26#ifndef __CPU_SH_TYPES_h
27#define __CPU_SH_TYPES_h
28
29#ifndef ASM
30
31#ifdef __cplusplus
32extern "C" {
33#endif
34
35/*
36 *  This section defines the basic types for this processor.
37 */
38
39typedef unsigned char  unsigned8;               /* unsigned 8-bit  integer */
40typedef unsigned short unsigned16;              /* unsigned 16-bit integer */
41typedef unsigned int   unsigned32;              /* unsigned 32-bit integer */
42typedef unsigned long long unsigned64;          /* unsigned 64-bit integer */
43
44typedef unsigned16     Priority_Bit_map_control;
45
46typedef signed char      signed8;               /* 8-bit  signed integer */
47typedef signed short     signed16;              /* 16-bit signed integer */
48typedef signed int       signed32;              /* 32-bit signed integer */
49typedef signed long long signed64;              /* 64 bit signed integer */
50
51typedef unsigned16 boolean;                     /* Boolean value, external */
52                                                /* data bus has 16 bits  */
53
54typedef float          single_precision;        /* single precision float */
55typedef double         double_precision;        /* double precision float */
56
57typedef void sh_isr;
58typedef void ( *sh_isr_entry )( void );
59
60#ifdef __cplusplus
61}
62#endif
63
64#endif  /* !ASM */
65
66#endif
67
Note: See TracBrowser for help on using the repository browser.