Rev 795 | Rev 948 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 504 | decky | 1 | STARTUP(../libc/arch/ARCH/src/entry.o) |
| 447 | decky | 2 | ENTRY(__entry) |
| 3 | |||
| 937 | jermar | 4 | PHDRS { |
| 5 | image PT_LOAD AT (0x1000); |
||
| 6 | } |
||
| 7 | |||
| 447 | decky | 8 | SECTIONS { |
| 937 | jermar | 9 | |
| 10 | . = 0x1000; |
||
| 11 | .image 0x00001000 : { |
||
| 12 | *(.text); |
||
| 13 | *(.data); /* initialized data */ |
||
| 14 | *(.rodata*); /* string literals */ |
||
| 15 | *(COMMON); /* global variables */ |
||
| 16 | *(.bss); /* uninitialized static variables */ |
||
| 17 | } :image |
||
| 18 | |||
| 19 | /DISCARD/ : { |
||
| 20 | *(.note.GNU-stack); |
||
| 21 | *(.comment); |
||
| 22 | } |
||
| 23 | |||
| 447 | decky | 24 | } |