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

15 lines
226 B
C
Raw Normal View History

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