home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / LK_V1.06.LHA / LK V1.06 / HELP / bounds.hlp < prev    next >
Encoding:
INI File  |  1994-11-01  |  1.2 KB  |  34 lines

  1. [LANGUAGE english; PARENT keywords; PAGE 11-18]
  2. [C;6;B]        BOUNDS "<...>" ...
  3. [7]Default: no bounds
  4. [J;1;N]
  5.   Defines hunks which needs auto-bounds. For each of the specified \
  6. hunk lk generates four symbols. Like you know, hunks of the same \
  7. name are linked together. This way lk enables you to know where a \
  8. specific hunk group starts and stops. Bounded hunks will not be \
  9. linked with other list of hunks (The SMALLCODE, SMALLDATA and \
  10. SMALLBSS are useless with them.) However, if you want one code, \
  11. data or bss, you might link the result again.
  12.   There is the list of the generated symbols:
  13.  
  14.     __START<hunk name>
  15.     __END<hunk name>
  16.     __SIZE<hunk name>       (long word size)
  17.     __BYTESIZE<hunk name>
  18.  
  19.   This function might not work properly if you use one of the FRAG??? \
  20. instructions. 
  21.  
  22.   Note: this instruction has been created to support the '_COVER' \
  23. hunk of Slink. There are the necessary things needed to enable \
  24. the programming of a COVER program:
  25.  
  26.    BOUNDS "_COVER"
  27.    DEFINE __CoverStart=__START__COVER
  28.           __CoverLength=__SIZE__COVER
  29.                      or
  30.           __CoverLength=__SIZE__COVER
  31.  
  32.   See also:
  33. [L;5; LINK about; GOTO address]        Become Registred
  34.