system.ld: Correct memory map.

This commit is contained in:
Kelvin Lawson
2013-08-22 02:19:31 +01:00
parent 8a449559d0
commit 28bfbe74c2

View File

@@ -4,7 +4,6 @@ ENTRY(__interrupt_vector_table)
MEMORY
{
flash (rx) : ORIGIN = 0x00000000, LENGTH = 0x00020000
sram (rwx) : ORIGIN = 0x80000000, LENGTH = 0x10000000
}
@@ -36,10 +35,7 @@ SECTIONS
*(.rodata*)
_end_text = .;
} >flash
.data :
{
_start_data = .;
*(.data)
_end_data = .;