aboutsummaryrefslogtreecommitdiff
path: root/targets/corstone-310/platform.ld
diff options
context:
space:
mode:
Diffstat (limited to 'targets/corstone-310/platform.ld')
-rw-r--r--targets/corstone-310/platform.ld6
1 files changed, 3 insertions, 3 deletions
diff --git a/targets/corstone-310/platform.ld b/targets/corstone-310/platform.ld
index 21c46b9..9d41f8f 100644
--- a/targets/corstone-310/platform.ld
+++ b/targets/corstone-310/platform.ld
@@ -216,7 +216,7 @@ SECTIONS
LONG (LOADADDR(.sram))
LONG (ADDR(.sram))
- LONG (SIZEOF(.sram))
+ LONG (SIZEOF(.sram) / 4)
__copy_table_end__ = .;
} > BRAM :rom_exec
@@ -227,10 +227,10 @@ SECTIONS
__zero_table_start__ = .;
LONG (ADDR(.bss))
- LONG (SIZEOF(.bss))
+ LONG (SIZEOF(.bss) / 4)
LONG (ADDR(.sram.bss))
- LONG (SIZEOF(.sram.bss))
+ LONG (SIZEOF(.sram.bss) / 4)
__zero_table_end__ = .;
} > BRAM :rom_exec