aboutsummaryrefslogtreecommitdiff
path: root/targets/corstone-300/platform.ld
diff options
context:
space:
mode:
Diffstat (limited to 'targets/corstone-300/platform.ld')
-rw-r--r--targets/corstone-300/platform.ld6
1 files changed, 3 insertions, 3 deletions
diff --git a/targets/corstone-300/platform.ld b/targets/corstone-300/platform.ld
index 76cb29c..12cc6ee 100644
--- a/targets/corstone-300/platform.ld
+++ b/targets/corstone-300/platform.ld
@@ -189,11 +189,11 @@ SECTIONS
__copy_table_start__ = .;
LONG (__etext)
LONG (__data_start__)
- LONG (__data_end__ - __data_start__)
+ LONG ((__data_end__ - __data_start__) / 4)
LONG (__eddr_data)
LONG (__sram_data_start__)
- LONG (__sram_data_end__ - __sram_data_start__ )
+ LONG ((__sram_data_end__ - __sram_data_start__) / 4)
__copy_table_end__ = .;
} > ITCM :rom_exec
@@ -203,7 +203,7 @@ SECTIONS
. = ALIGN(4);
__zero_table_start__ = .;
LONG (__bss_start__)
- LONG (__bss_end__ - __bss_start__)
+ LONG ((__bss_end__ - __bss_start__) / 4)
__zero_table_end__ = .;
/**