#ifndef __COMMON_DEFS_H__
#define __COMMON_DEFS_H__

#ifndef __ASSEMBLER__

typedef unsigned char  uint8_t;
typedef signed char    sbyte;
typedef unsigned short word;
typedef unsigned long  dword;

typedef unsigned long  uint32_t;

typedef volatile unsigned char  	sfr_byte;
typedef volatile unsigned short		sfr_word;
typedef volatile unsigned long		sfr_dword;

#endif // __ASSEMBLER__

#endif // COMMONDEFS_H
