コード例 #1
0
        public void AddJumpLabel(BinaryLabel label)
        {
            if (mJumpLabelSection == null)
            {
                mJumpLabelSection = new List <BinaryLabel>();
            }

            mJumpLabelSection.Add(label);
        }
コード例 #2
0
        public void AddProcedureLabel(BinaryLabel label)
        {
            if (mProcedureLabelSection == null)
            {
                mProcedureLabelSection = new List <BinaryLabel>();
            }

            mProcedureLabelSection.Add(label);
        }