You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
300 B

#include "VmCode.h"
_VM_CODE_LINK::_VM_CODE_LINK()
{
Flags = 0;
Next = Prev = NULL;
Label = 0;
InstData = NULL;
InstDataSize = 0UL;
PrologueData = NULL;
PrologueDataSize = 0UL;
}
_VM_CODE_LINK::_VM_CODE_LINK(UINT LabelId)
: _VM_CODE_LINK()
{
Label = LabelId;
Flags = CODE_FLAG_IS_LABEL;
}