project64/Source/Project64-core/N64System/Recompiler/ExitInfo.cpp

17 lines
452 B
C++
Raw Normal View History

#include "stdafx.h"
2022-10-10 00:22:17 +00:00
#include <Project64-core\N64System\Recompiler\CodeBlock.h>
2022-10-10 00:22:17 +00:00
#include <Project64-core\N64System\Recompiler\ExitInfo.h>
CExitInfo::CExitInfo(CCodeBlock & CodeBlock) :
ID(0),
TargetPC(0),
ExitRegSet(CodeBlock, CodeBlock.RecompilerOps()->Assembler())
{
2022-11-30 06:49:15 +00:00
#if defined(__i386__) || defined(_M_IX86)
2022-11-23 04:16:55 +00:00
JumpLabel = CodeBlock.RecompilerOps()->Assembler().newLabel();
2022-11-30 06:49:15 +00:00
#else
g_Notify->BreakPoint(__FILE__, __LINE__);
#endif
}