platform.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. /**
  2. * Copyright (C) 2005-2012 Gekko Emulator
  3. *
  4. * @file platform.h
  5. * @author ShizZy <shizzy247@gmail.com>
  6. * @date 2012-02-11
  7. * @brief Platform detection macros for portable compilation
  8. *
  9. * @section LICENSE
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details at
  19. * http://www.gnu.org/copyleft/gpl.html
  20. *
  21. * Official project repository can be found at:
  22. * http://code.google.com/p/gekko-gc-emu/
  23. */
  24. #pragma once
  25. ////////////////////////////////////////////////////////////////////////////////////////////////////
  26. // Platform detection
  27. #if defined(ARCHITECTURE_x86_64) || defined(__aarch64__)
  28. #define EMU_ARCH_BITS 64
  29. #elif defined(__i386) || defined(_M_IX86) || defined(__arm__) || defined(_M_ARM)
  30. #define EMU_ARCH_BITS 32
  31. #endif