aboutsummaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorYanghao Hua <huayanghao@gmail.com>2019-04-27 12:37:35 +0200
committerYanghao Hua <huayanghao@gmail.com>2019-04-27 12:37:35 +0200
commitd60ffd8eea7ede509db5db196e322064074e6d61 (patch)
treee3217fa79e47cf1b84863631d3cc7a234ce0c6da /firmware
parent507f49d086be448f61f4e10f215e64a830e6fdaf (diff)
downloadpicorv32-d60ffd8eea7ede509db5db196e322064074e6d61.tar.gz
picorv32-d60ffd8eea7ede509db5db196e322064074e6d61.zip
fix firmware/sections.lds section size alignment on 4 bytes
Diffstat (limited to 'firmware')
-rw-r--r--firmware/sections.lds1
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/sections.lds b/firmware/sections.lds
index 948814b..e1eb79f 100644
--- a/firmware/sections.lds
+++ b/firmware/sections.lds
@@ -20,5 +20,6 @@ SECTIONS {
*(.text);
*(*);
end = .;
+ . = ALIGN(4);
} > mem
}