Fixed potential BaS size alignment issue.

This commit is contained in:
Vincent Rivière
2012-11-07 20:24:42 +00:00
parent 3f810e8a8d
commit 4a969e2452
2 changed files with 10 additions and 4 deletions

View File

@@ -91,7 +91,11 @@ SECTIONS {
objs/illegal_instruction.o(.text)
*(.data)
*(.bss)
. = ALIGN(4);
/* The BaS copy routine assumes that tha BaS size
* is a multiple of the following value.
*/
. = ALIGN(16);
} > ram
__BAS_LMA = LOADADDR(.bas);