Linker/linker.rez
Stephen Heumann 085c7c46ca Add support for auto-segmentation.
This is a new feature where the linker will automatically divide the code into load segments, creating as many segments as necessary to fit it. This relieves the programmer from the need to manually figure out how a large program can be divided into segments.

Auto-segmentation is triggered by the use of the special load segment name AUTOSEG~~~. Using this approach (rather than a flag in the OMF header) allows auto-segmentation to be used with all existing languages that provide a mechanism for specifying load segment names.
2022-08-30 19:32:09 -05:00

16 lines
396 B
Plaintext

#include "types.rez"
resource rVersion(1) {
{
2, /* Major revision */
1, /* Minor revision */
0, /* Bug version */
beta, /* Release stage */
1, /* Non-final release # */
},
verUS, /* Region code */
"ORCA/Linker", /* Short version number */
"Copyright 1996, Byte Works, Inc.\n" /* Long version number */
"Updated 2022"
};