2016-01-27 09:11:59 +00:00
|
|
|
#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;
|
|
|
|
|
2021-06-28 01:57:35 +00:00
|
|
|
#elif defined(__aarch64__)
|
|
|
|
|
|
|
|
#include <Project64-core/N64System/Recompiler/Aarch64/Aarch64RegInfo.h>
|
|
|
|
typedef CAarch64RegInfo CRegInfo;
|
|
|
|
|
2016-07-06 20:14:12 +00:00
|
|
|
#endif
|