rockbox/apps/plugins/rockboy/defs.h
2006-06-19 01:47:45 +00:00

28 lines
394 B
C

#ifndef __DEFS_H__
#define __DEFS_H__
#include "rockmacros.h"
#ifdef ROCKBOX_LITTLE_ENDIAN
#define LO 0
#define HI 1
#else
#define LO 1
#define HI 0
#endif
typedef unsigned char byte;
typedef unsigned char un8;
typedef unsigned short un16;
typedef unsigned int un32;
typedef signed char n8;
typedef signed short n16;
typedef signed int n32;
typedef un16 word;
typedef word addr;
#endif