LINK uses combine types to determine whether two or more segments sharing the same segment name should be combined into one large segment. The valid combine types are PUBLIC, STACK, COMMON, and PRIVATE.
If a segment has combine type PUBLIC, LINK automatically combines it with any other segments having the same name and belonging to the same class. When LINK combines segments, it ensures that the segments are contiguous and that all addresses in the segments can be accessed using an offset from the same frame address. The result is the same as if the segment were defined as a whole in one source file.
LINK preserves each individual segment's alignment type. This means that even though the segments belong to a single large segment, the code and data in the segments do not lose their original alignment. If the combined segments exceed 64K, LINK displays an error message.
If a segment has combine type STACK, LINK carries out the same combine operation as for PUBLIC segments. The only exception is that STACK segments cause LINK to copy an initial stack-pointer value to the executable file. This stack-pointer value is the offset to the end of the first stack segment (or combined stack segment) encountered.
If a segment has combine type COMMON, LINK automatically combines it with any other segments having the same name and belonging to the same class. When LINK combines COMMON segments, however, it places the start of each segment at the same address, creating a series of overlapping segments. The result is a single segment no larger than the largest segment combined.
A segment has combine type PRIVATE only if no explicit combine type is defined for it in the source file. LINK does not combine private segments.