OSDN Git Service

Moved the junk codes to junk directory.
[kozos-expbrd/kozos_expbrd.git] / firm / junk / 08 / bootload / defines.h
1 #ifndef _DEFINES_H_INCLUDED_
2 #define _DEFINES_H_INCLUDED_
3
4 #define NULL ((void *)0)
5 #define SERIAL_DEFAULT_DEVICE 1
6
7 typedef char  int8;
8 typedef short int16;
9 typedef long  int32;
10 typedef unsigned char  uint8;
11 typedef unsigned short uint16;
12 typedef unsigned long  uint32;
13
14 #endif