source: rtems/c/src/lib/libbsp/i960/rxgen960/startup/types.h @ f08a5596

4.104.114.84.95
Last change on this file since f08a5596 was 702c5f5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/27/99 at 15:29:18

The rxgen960 BSP and i960 RPM support was submitted by Mark Bronson
<mark@…> of RAMIX.

  • Property mode set to 100644
File size: 653 bytes
Line 
1/* Type definitions for our use */
2#ifndef __TYPES_H
3#define __TYPES_H
4typedef unsigned char u8;
5typedef unsigned int u32;
6typedef unsigned short u16;
7typedef unsigned char uchar;
8typedef unsigned int Int32;
9typedef unsigned short Int16;
10typedef unsigned char Int8;
11typedef unsigned int u_int;
12typedef unsigned int u_long;
13typedef unsigned short u_short;
14typedef unsigned char u_char;
15#ifndef NULL
16#define NULL 0
17#endif
18#ifndef TRUE
19#define TRUE 1
20#endif
21#ifndef FALSE
22#define FALSE 0
23#endif
24/*
25 * Definitions of unsigned amounts
26 */
27#define ub      Int8
28#define uw      Int16
29#define ul      Int64
30#define sl      long
31#define ui      Int32
32
33
34#endif
Note: See TracBrowser for help on using the repository browser.