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

16 lines
243 B
C
Raw Normal View History

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