2016-01-27 09:11:59 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
|
|
|
* Project64 - A Nintendo 64 emulator. *
|
|
|
|
* http://www.pj64-emu.com/ *
|
|
|
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
#pragma once
|
|
|
|
|
2016-07-06 20:14:12 +00:00
|
|
|
#if defined(__i386__) || defined(_M_IX86)
|
2016-06-27 11:49:15 +00:00
|
|
|
#include <Project64-core/N64System/Recompiler/x86/x86RegInfo.h>
|
2016-01-27 09:11:59 +00:00
|
|
|
|
2016-07-06 20:14:12 +00:00
|
|
|
typedef CX86RegInfo CRegInfo;
|
|
|
|
|
|
|
|
#elif defined(__amd64__) || defined(_M_X64)
|
|
|
|
|
|
|
|
#include <Project64-core/N64System/Recompiler/x64-86/x64RegInfo.h>
|
|
|
|
|
|
|
|
typedef CX64RegInfo CRegInfo;
|
|
|
|
|
|
|
|
#elif defined(__arm__) || defined(_M_ARM)
|
|
|
|
|
|
|
|
#include <Project64-core/N64System/Recompiler/Arm/ArmRegInfo.h>
|
|
|
|
|
|
|
|
typedef CArmRegInfo CRegInfo;
|
|
|
|
|
|
|
|
#endif
|