project64/Source/Project64/N64 System/Recompiler/Jump Info.h

16 lines
262 B
C++

class CJumpInfo
{
public:
CJumpInfo();
DWORD TargetPC;
DWORD JumpPC;
stdstr BranchLabel;
DWORD * LinkLocation;
DWORD * LinkLocation2;
bool FallThrough;
bool PermLoop;
bool DoneDelaySlot; //maybe deletable
CRegInfo RegSet;
};