Removed unnecessary alignment directives in link.ld

This commit is contained in:
Adam Greenwood-Byrne 2021-02-23 12:25:40 +00:00
parent 44669ee990
commit 0e540533d9

View file

@ -21,13 +21,11 @@ SECTIONS
} }
.cpu2Stack : .cpu2Stack :
{ {
. = ALIGN(16);
. = . + 512; . = . + 512;
__cpu2_stack = .; __cpu2_stack = .;
} }
.cpu3Stack : .cpu3Stack :
{ {
. = ALIGN(16);
. = . + 512; . = . + 512;
__cpu3_stack = .; __cpu3_stack = .;
} }