#ifndef __TYPES_H
#define __TYPES_H

typedef unsigned char uae_u8;
typedef char uae_s8;
typedef unsigned short uae_u16;
typedef signed short uae_s16;
typedef unsigned long uae_u32;
typedef signed long uae_s32;

#endif
