2010-05-30 01:54:42 +00:00
|
|
|
class CJumpInfo
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CJumpInfo();
|
|
|
|
|
|
|
|
DWORD TargetPC;
|
2010-10-23 18:53:01 +00:00
|
|
|
DWORD JumpPC;
|
2010-05-31 00:21:08 +00:00
|
|
|
stdstr BranchLabel;
|
2010-05-30 01:54:42 +00:00
|
|
|
DWORD * LinkLocation;
|
|
|
|
DWORD * LinkLocation2;
|
2012-10-15 07:41:30 +00:00
|
|
|
bool FallThrough;
|
|
|
|
bool PermLoop;
|
|
|
|
bool DoneDelaySlot; //maybe deletable
|
2010-05-30 01:54:42 +00:00
|
|
|
CRegInfo RegSet;
|
|
|
|
};
|