Line | |
---|
1 | |
---|
2 | /****************************************************************************/ |
---|
3 | /* Definition of the base addresses for all vsegs used by the GIET_VM */ |
---|
4 | /****************************************************************************/ |
---|
5 | |
---|
6 | INCLUDE giet_vsegs.ld |
---|
7 | |
---|
8 | /****************************************************************************/ |
---|
9 | /* Grouping sections into virtual segment for boot code and data */ |
---|
10 | /****************************************************************************/ |
---|
11 | |
---|
12 | SECTIONS |
---|
13 | { |
---|
14 | . = seg_boot_code_base; |
---|
15 | seg_boot_code : |
---|
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 | } |
---|
32 | |
---|
Note: See
TracBrowser
for help on using the repository browser.