2022-08-08 10:52:51 +00:00
|
|
|
#include "stdafx.h"
|
2022-10-10 00:22:17 +00:00
|
|
|
|
2022-08-15 03:09:34 +00:00
|
|
|
#include <Project64-core\N64System\Recompiler\CodeBlock.h>
|
2022-10-10 00:22:17 +00:00
|
|
|
#include <Project64-core\N64System\Recompiler\ExitInfo.h>
|
2022-08-08 10:52:51 +00:00
|
|
|
|
|
|
|
CExitInfo::CExitInfo(CCodeBlock & CodeBlock) :
|
|
|
|
ID(0),
|
|
|
|
TargetPC(0),
|
|
|
|
JumpLoc(nullptr),
|
2022-08-15 03:09:34 +00:00
|
|
|
ExitRegSet(CodeBlock, CodeBlock.RecompilerOps()->Assembler())
|
2022-08-08 10:52:51 +00:00
|
|
|
{
|
|
|
|
}
|