// VisualBoyAdvance - Nintendo Gameboy/GameboyAdvance (TM) emulator.1// Copyright (C) 2008 VBA-M development team23// This program is free software; you can redistribute it and/or modify4// it under the terms of the GNU General Public License as published by5// the Free Software Foundation; either version 2, or(at your option)6// any later version.7//8// This program is distributed in the hope that it will be useful,9// but WITHOUT ANY WARRANTY; without even the implied warranty of10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the11// GNU General Public License for more details.12//13// You should have received a copy of the GNU General Public License14// along with this program; if not, write to the Free Software Foundation,15// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.1617#ifndef __VBA_TYPES_H__18#define __VBA_TYPES_H__1920#include <stdint.h>2122typedef uint8_t u8;23typedef uint16_t u16;24typedef uint32_t u32;25typedef uint64_t u64;2627typedef int8_t s8;28typedef int16_t s16;29typedef int32_t s32;30typedef int64_t s64;3132#endif // __VBA_TYPES_H__333435