initial commit
[pfinal.git] / Routix / tareas / ush / tarea.ld
blob706c3cb367cb477097153d46798539a0df770704
1 OUTPUT_FORMAT(coff-go32)
2 ENTRY(_main)
4 SECTIONS {
6  .text 0x80000000 :
8         *.o(.text)
11 __code_size = SIZEOF (.text);
13  .data 0x88000000 : AT (ADDR (.text) + SIZEOF (.text) )
15         *.o(.data)
18 __data_size = SIZEOF (.data);
20 .bss  : 
22         *.o(.bss)
25 .comment :
27         *(.comment)
30