home *** CD-ROM | disk | FTP | other *** search
- OUTPUT_FORMAT("coff-go32")
- ENTRY(start)
- SECTIONS
- {
- .text 0x1000+SIZEOF_HEADERS : {
- *(.text)
- etext = . ; _etext = .;
- . = ALIGN(0x200);
- }
- .data ALIGN(0x200) : {
- djgpp_first_ctor = . ;
- *(.ctor)
- djgpp_last_ctor = . ;
- djgpp_first_dtor = . ;
- *(.dtor)
- djgpp_last_dtor = . ;
- *(.data)
- edata = . ; _edata = .;
- . = ALIGN(0x200);
- }
- .bss SIZEOF(.data) + ADDR(.data) :
- {
- *(.bss)
- *(COMMON)
- end = . ; _end = .;
- . = ALIGN(0x200);
- }
- }
-