The following example specifies that relocatable BIT segments be located at or after bit address 48 decimal (30 hex) in data memory:
BL51 MYPROG.OBJ BIT(48)
or
BL51 MYPROG.OBJ BIT(0x30)
To specify the order for segments, you must include the segment names, separated by commas. The following example places the ?DT?A, ?DT?B, and ?DT?C segments at the beginning of the bit-addressable DATA memory.
BL51 MYPROG.OBJ,A.OBJ,B.OBJ,C.OBJ BIT(?DT?A,?DT?B,?DT?C)
You may also specify the bit address for the segments. The following example places the ?DT?A and ?DT?B segments at 28h and 30h:
BL51 MYPROG.OBJ,A.OBJ,B.OBJ BIT(?DT?A(28h),?DT?B(30h))
|