X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcpu%2Farm%2Fscripts%2Fat91sam7_512_rom.ld;h=6e9b7e79993238be4a6e08941124cf6bff68c21f;hb=645ac2f0284bcb79f37a46a0483b25058ef7f1a2;hp=4826fc0db6ac41a3372c54f6f8de1bf631626d86;hpb=32eebaf8bf80d1ffd417bfe6d2c34e6cd3684f87;p=bertos.git diff --git a/bertos/cpu/arm/scripts/at91sam7_512_rom.ld b/bertos/cpu/arm/scripts/at91sam7_512_rom.ld index 4826fc0d..6e9b7e79 100644 --- a/bertos/cpu/arm/scripts/at91sam7_512_rom.ld +++ b/bertos/cpu/arm/scripts/at91sam7_512_rom.ld @@ -57,11 +57,11 @@ MEMORY /* * Define stack size here */ -FIQ_STACK_SIZE = 0x0100; -IRQ_STACK_SIZE = 0x0100; -ABT_STACK_SIZE = 0x0100; -UND_STACK_SIZE = 0x0100; -SVC_STACK_SIZE = 0x0400; +FIQ_STACK_SIZE = 0x0400; +IRQ_STACK_SIZE = 0x0400; +ABT_STACK_SIZE = 0x0400; +UND_STACK_SIZE = 0x0400; +SVC_STACK_SIZE = 0x1000; /* * Allocate section memory @@ -114,27 +114,27 @@ SECTIONS PROVIDE (__stack_fiq_start = .); . += FIQ_STACK_SIZE; - . = ALIGN(4); + . = ALIGN(8); PROVIDE (__stack_fiq_end = .); PROVIDE (__stack_irq_start = .); . += IRQ_STACK_SIZE; - . = ALIGN(4); + . = ALIGN(8); PROVIDE (__stack_irq_end = .); PROVIDE (__stack_abt_start = .); . += ABT_STACK_SIZE; - . = ALIGN(4); + . = ALIGN(8); PROVIDE (__stack_abt_end = .); PROVIDE (__stack_und_start = .); . += UND_STACK_SIZE; - . = ALIGN(4); + . = ALIGN(8); PROVIDE (__stack_und_end = .); PROVIDE (__stack_svc_start = .); . += SVC_STACK_SIZE; - . = ALIGN(4); + . = ALIGN(8); PROVIDE (__stack_svc_end = .); PROVIDE (__stack_end = .);