Lots of changes! Takes us to rom S
[uccvend-snackrom.git] / ROM2 / types.h
1 #ifndef _TYPES_H_
2 #define _TYPES_H_
3
4 /* FIXME: are these typedefs right for m68hc11-gcc? */
5 /*   XXX: see gcc manual for types */
6 typedef unsigned char    u8;
7 typedef signed char      s8;
8 typedef unsigned short   u16;
9 typedef signed short     s16;
10 typedef unsigned long    u32;
11 typedef signed long      s32;
12 typedef u8               bool;
13 typedef u16              addr_t;
14
15
16 #endif /* _TYPES_H_ */

UCC git Repository :: git.ucc.asn.au