LINK Help (linkx.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
SEGMENTS Statement: Example
 SEGMENTS Statement                        Up Contents Index Back
─────SEGMENTS Statement: Example────────────────────────────────────────────
 
          SEGMENTS
            cseg1 CLASS 'mycode' IOPL
            cseg2                EXECUTEONLY PRELOAD CONFORMING
            dseg  CLASS 'data'   LOADONCALL READONLY
 
     This example specifies segments named cseg1, cseg2, and dseg. The
     first segment is assigned the class 'mycode' and the second is
     assigned CODE by default. Each segment is given different
     attributes.
                                    -♦-