From 3cb910cd516aee26ebeabfad32123d05cbf84ca8 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Fri, 30 Oct 2015 15:52:40 +0100 Subject: Added regions to firmware/sections.lds --- firmware/sections.lds | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'firmware') diff --git a/firmware/sections.lds b/firmware/sections.lds index f6d9a3b..3c56e9d 100644 --- a/firmware/sections.lds +++ b/firmware/sections.lds @@ -7,6 +7,10 @@ binary, for any purpose, commercial or non-commercial, and by any means. */ +MEMORY { + mem : ORIGIN = 0x00000000, LENGTH = 0x00010000 +} + SECTIONS { .memory : { . = 0x000000; @@ -14,5 +18,5 @@ SECTIONS { *(.text); *(*); end = .; - } + } > mem } -- cgit