Last change
on this file since 513 was
473,
checked in by alain, 10 years ago
|
Improving the classif application:
We use now the distributed heap, and the user malloc()
to implement the distributed MWMR buffers and the
distributed MWMR descriptors.
|
File size:
825 bytes
|
Rev | Line | |
---|
[457] | 1 | /**************************************************************************** |
---|
[473] | 2 | * Definition of the base address for code and data vsegs |
---|
[457] | 3 | *****************************************************************************/ |
---|
| 4 | |
---|
| 5 | seg_code_base = 0x10000000; |
---|
[473] | 6 | seg_data_base = 0x20000000; |
---|
[457] | 7 | |
---|
| 8 | /*************************************************************************** |
---|
| 9 | * Grouping sections into segments for code and data |
---|
| 10 | ***************************************************************************/ |
---|
| 11 | |
---|
| 12 | SECTIONS |
---|
| 13 | { |
---|
| 14 | . = seg_code_base; |
---|
| 15 | seg_code : |
---|
| 16 | { |
---|
| 17 | *(.text) |
---|
| 18 | } |
---|
| 19 | |
---|
[473] | 20 | . = seg_data_base; |
---|
| 21 | seg_data : |
---|
[457] | 22 | { |
---|
| 23 | *(.ctors) |
---|
| 24 | *(.rodata) |
---|
| 25 | *(.rodata.*) |
---|
| 26 | *(.data) |
---|
| 27 | *(.lit8) |
---|
| 28 | *(.lit4) |
---|
| 29 | *(.sdata) |
---|
| 30 | *(.bss) |
---|
| 31 | *(COMMON) |
---|
| 32 | *(.sbss) |
---|
| 33 | *(.scommon) |
---|
| 34 | } |
---|
| 35 | } |
---|
| 36 | |
---|
Note: See
TracBrowser
for help on using the repository browser.