Skip to content

Commit 7be20be

Browse files
authored
Merge pull request #1469 from enkiller/dev
[bsp][qemu]更改中断栈大小为2048
2 parents b465209 + cc30bd3 commit 7be20be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bsp/qemu-vexpress-a9/cpu/start_gcc.S

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
.equ F_Bit, 0x40 @ when F bit is set, FIQ is disabled
3535

3636
.equ UND_Stack_Size, 0x00000000
37-
.equ SVC_Stack_Size, 0x00000100
37+
.equ SVC_Stack_Size, 0x00000400
3838
.equ ABT_Stack_Size, 0x00000000
3939
.equ RT_FIQ_STACK_PGSZ, 0x00000000
40-
.equ RT_IRQ_STACK_PGSZ, 0x00000100
41-
.equ USR_Stack_Size, 0x00000100
40+
.equ RT_IRQ_STACK_PGSZ, 0x00000800
41+
.equ USR_Stack_Size, 0x00000400
4242

4343
#define ISR_Stack_Size (UND_Stack_Size + SVC_Stack_Size + ABT_Stack_Size + \
4444
RT_FIQ_STACK_PGSZ + RT_IRQ_STACK_PGSZ)

0 commit comments

Comments
 (0)