URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [uclinux/] [uClinux-2.0.x/] [arch/] [m68knommu/] [platform/] [5307/] [CADRE3/] [ram.ld] - Rev 199
Go to most recent revision | Compare with Previous | Blame | View Log
MEMORY {
ram : ORIGIN = 0x20000, LENGTH = 0x007E0000
}
SECTIONS {
.text 0x20000 : {
_stext = . ;
*(.text)
_etext = ALIGN(0x4) ;
} > ram
.data BLOCK(0x4) : {
_sdata = . ;
__data_start = . ;
*(.rodata)
*(.data)
_edata = ALIGN(0x4) ;
} > ram
.bss BLOCK(0x4) : {
_sbss = . ;
*(.bss)
*(COMMON)
_ebss = ALIGN(0x4) ;
_end = ALIGN(0x4) ;
} > ram
}
Go to most recent revision | Compare with Previous | Blame | View Log