mirror of
https://github.com/byteworksinc/Linker.git
synced 2024-11-21 13:31:57 +00:00
085c7c46ca
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.
16 lines
396 B
Plaintext
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"
|
|
};
|