URL
https://opencores.org/ocsvn/s6soc/s6soc/trunk
[/] [s6soc/] [trunk/] [sw/] [zipos/] [cmod.ld] - Diff between revs 45 and 52
Show entire file |
Details |
Blame |
View Log
Rev 45 |
Rev 52 |
Line 45... |
Line 45... |
_sdram_image_start = 0;
|
_sdram_image_start = 0;
|
_sdram_image_end = 0;
|
_sdram_image_end = 0;
|
|
|
SECTIONS
|
SECTIONS
|
{
|
{
|
.rocode 0x1200000 : {
|
.rocode 0x1200000 : ALIGN(4) {
|
_boot_address = .;
|
_boot_address = .;
|
*(.start) *(.boot)
|
*(.start) *(.boot*)
|
*(.text*)
|
*(.text*)
|
*(.rodata*)
|
*(.rodata*)
|
*(.strings*)
|
*(.strings*)
|
|
__rocode_alignment = (. + 3) & ~ 3;
|
|
. = __rocode_alignment;
|
} > flash
|
} > flash
|
_kernel_image_start = . ;
|
_kernel_image_start = . ;
|
.data : {
|
.data : ALIGN_WITH_INPUT {
|
*(.kernel*)
|
*(.kernel*)
|
*(.fixdata*)
|
*(.fixdata*)
|
*(.data*)
|
*(.data*)
|
*(COMMON*)
|
*(COMMON*)
|
_kernel_image_end = . ;
|
_kernel_image_end = . ;
|
}> blkram AT> flash
|
}> blkram AT> flash
|
_blkram_image_end = . ;
|
_blkram_image_end = . ;
|
.bss : {
|
.bss : ALIGN_WITH_INPUT {
|
*(.bss*)
|
*(.bss*)
|
_bss_image_end = . ;
|
_bss_image_end = . ;
|
} > blkram
|
} > blkram
|
_top_of_heap = .;
|
_top_of_heap = .;
|
}
|
}
|
© copyright 1999-2024
OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.