53 lines
1.4 KiB
C++
53 lines
1.4 KiB
C++
|
/****************************************************************************
|
||
|
* *
|
||
|
* 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>
|
||
|
|
||
|
CArmRegInfo::CArmRegInfo()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
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()
|
||
|
{
|
||
|
}
|
||
|
#endif
|