Hi every body I can't overcome the warning *** WARNING L29: SEGMENT LOCATED OUTSIDE CLASS AREA SEGMENT: ?XD?DCBCMAIN?0 Thank you very much.
CLASSES are defined for all the major groups of segments. For example, the XDATA CLASS contains all the XDATA SEGMENTS. Some CLASSES are limited in their size because of the addressing limitations of the particular device. For example, the XDATA class is limited to 64K because the size of the DPTR (which is used to access XDATA) is 16 bits. The L29 warning indicates that you have located an XDATA segment outside the range of the CLASS. Typically, the XDATA CLASS RANGE is 0x010000-0x01FFFF. Make sure that the XDATA segment specified is in that range. Jon