oops - omitted from previous delta

This commit is contained in:
Nick Clifton 2013-07-19 13:21:55 +00:00
parent ee181c7253
commit 0a01f695e0
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
MEMORY
{
ram : ORIGIN = 0x10000, LENGTH = 0x10000
rom : ORIGIN = 0x20000, LENGTH = 0x10000
}
SECTIONS
{
.text : ALIGN_WITH_INPUT {*(.text)} > ram AT> rom
.data : ALIGN_WITH_INPUT {*(.data)} > ram AT> rom
/DISCARD/ : {*(*)}
}