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

13 lines
306 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),
JumpLoc(nullptr),
ExitRegSet(CodeBlock, CodeBlock.RecompilerOps()->Assembler())
{
}