Rev | Line | |
---|
[160] | 1 | |
---|
[203] | 2 | /****************************************************************************/ |
---|
| 3 | /* Definition of the base addresses for all vsegs used by the GIET_VM */ |
---|
| 4 | /****************************************************************************/ |
---|
[160] | 5 | |
---|
[203] | 6 | INCLUDE giet_vsegs.ld |
---|
[160] | 7 | |
---|
[203] | 8 | /****************************************************************************/ |
---|
| 9 | /* Grouping sections into virtual segment for boot code and data */ |
---|
| 10 | /****************************************************************************/ |
---|
[160] | 11 | |
---|
| 12 | SECTIONS |
---|
| 13 | { |
---|
[203] | 14 | . = seg_boot_code_base; |
---|
| 15 | seg_boot_code : |
---|
[160] | 16 | { |
---|
| 17 | *(.boot) |
---|
| 18 | *(.text) |
---|
| 19 | |
---|
| 20 | *(.rodata) |
---|
| 21 | *(.rodata.*) |
---|
| 22 | *(.data) |
---|
| 23 | *(.lit8) |
---|
| 24 | *(.lit4) |
---|
| 25 | *(.sdata) |
---|
| 26 | *(.bss) |
---|
| 27 | *(COMMON) |
---|
| 28 | *(.sbss) |
---|
| 29 | *(.scommon) |
---|
| 30 | } |
---|
| 31 | } |
---|
[203] | 32 | |
---|
Note: See
TracBrowser
for help on using the repository browser.