11 lines
206 B
C++
11 lines
206 B
C++
|
#include "stdafx.h"
|
||
|
#include <Project64-core\N64System\Recompiler\ExitInfo.h>
|
||
|
|
||
|
CExitInfo::CExitInfo(CCodeBlock & CodeBlock) :
|
||
|
ID(0),
|
||
|
TargetPC(0),
|
||
|
JumpLoc(nullptr),
|
||
|
ExitRegSet(CodeBlock)
|
||
|
{
|
||
|
}
|