home *** CD-ROM | disk | FTP | other *** search
/ Zodiac Super OZ / MEDIADEPOT.ISO / FILES / 13 / DJDEV201.ZIP / lib / djgpp.djl < prev    next >
Text File  |  1996-09-08  |  540b  |  29 lines

  1. OUTPUT_FORMAT("coff-go32")
  2. ENTRY(start)
  3. SECTIONS
  4. {
  5.   .text  0x1000+SIZEOF_HEADERS : {
  6.     *(.text)
  7.     etext  =  . ; _etext = .;
  8.     . = ALIGN(0x200);
  9.   }
  10.   .data  ALIGN(0x200) : {
  11.     djgpp_first_ctor = . ;
  12.     *(.ctor)
  13.     djgpp_last_ctor = . ;
  14.     djgpp_first_dtor = . ;
  15.     *(.dtor)
  16.     djgpp_last_dtor = . ;
  17.     *(.data)
  18.      edata  =  . ; _edata = .;
  19.      . = ALIGN(0x200);
  20.   }
  21.   .bss  SIZEOF(.data) + ADDR(.data) :
  22.   {                     
  23.     *(.bss)
  24.     *(COMMON)
  25.      end = . ; _end = .;
  26.      . = ALIGN(0x200);
  27.   }
  28. }
  29.