2016-08-11 11:09:21 +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 *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
|
|
|
#include "stdafx.h"
|
|
|
|
|
|
|
|
#if defined(__arm__) || defined(_M_ARM)
|
|
|
|
#include <Project64-core/N64System/Recompiler/Arm/ArmRegInfo.h>
|
|
|
|
|
2016-09-29 12:15:33 +00:00
|
|
|
CArmRegInfo::CArmRegInfo()
|
2016-08-11 11:09:21 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CArmRegInfo::CArmRegInfo(const CArmRegInfo& rhs)
|
|
|
|
{
|
|
|
|
*this = rhs;
|
|
|
|
}
|
|
|
|
|
|
|
|
CArmRegInfo::~CArmRegInfo()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CArmRegInfo& CArmRegInfo::operator=(const CArmRegInfo& right)
|
|
|
|
{
|
|
|
|
CRegBase::operator=(right);
|
|
|
|
#ifdef _DEBUG
|
|
|
|
if (*this != right)
|
|
|
|
{
|
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CArmRegInfo::BeforeCallDirect(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CArmRegInfo::AfterCallDirect(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void CArmRegInfo::WriteBackRegisters()
|
|
|
|
{
|
|
|
|
}
|
2016-09-29 12:15:33 +00:00
|
|
|
#endif
|