URL
https://opencores.org/ocsvn/s1_core/s1_core/trunk
Subversion Repositories s1_core
[/] [s1_core/] [trunk/] [tools/] [src/] [linker.map] - Rev 110
Go to most recent revision | Compare with Previous | Blame | View Log
MEMORY {
rom : ORIGIN = 0xFFF0000020, LENGTH = 4096
ram : ORIGIN = 0x0000040000, LENGTH = 65536
}
SECTIONS {
.text : { *(.text) } > ram
.data : { *(.data) } > ram
.bss : { *(.bss) } > ram
.stack : { *(.stack) } > ram
}
Go to most recent revision | Compare with Previous | Blame | View Log