mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-31 02:50:26 +08:00
cortex-r4: use byte to allocate the stack
Unit of "byte" is more intuitive than "long".
This commit is contained in:
parent
a8520ed383
commit
0c9b9ced31
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
stack_start:
|
stack_start:
|
||||||
.rept (UND_Stack_Size + SVC_Stack_Size + ABT_Stack_Size + FIQ_Stack_Size + IRQ_Stack_Size)
|
.rept (UND_Stack_Size + SVC_Stack_Size + ABT_Stack_Size + FIQ_Stack_Size + IRQ_Stack_Size)
|
||||||
.long 0
|
.byte 0
|
||||||
.endr
|
.endr
|
||||||
stack_top:
|
stack_top:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user