Merge branch 'master' of ssh://git.gag.com/scm/git/fw/altos
[fw/altos] / src / stmf0 / altos-loader.ld
index c458116b7e63a4af69ccfce3fa7c658727661764..4d9b81ae0ad16d0121b8d79ee75638c994b6b618 100644 (file)
@@ -66,17 +66,18 @@ SECTIONS {
         */
 
        .textram BLOCK(8): {
-               __data_start__ = .;
+               _start__ = .;
                __text_ram_start__ = .;
                *(.ramtext)
                __text_ram_end = .;
        } >ram AT>rom
 
-       /* Data -- relocated to RAM, but written to ROM
+       /* Data -- relocated to RAM, but written to ROM.
+        * also aligned to 8 bytes in case textram is empty
         */
-       .data : {
+       .data BLOCK(8): {
                *(.data)        /* initialized data */
-               __data_end__ = .;
+               _end__ = .;
        } >ram AT>rom