File tree Expand file tree Collapse file tree 1 file changed +0
-30
lines changed
targets/TARGET_Maxim/TARGET_MAX32620C/device/TOOLCHAIN_GCC_ARM Expand file tree Collapse file tree 1 file changed +0
-30
lines changed Original file line number Diff line number Diff line change 34
34
.syntax unified
35
35
.arch armv7 - m
36
36
37
- . section .stack
38
- . align 3
39
- #ifdef __STACK_SIZE
40
- . equ Stack_Size , __STACK_SIZE
41
- #else
42
- . equ Stack_Size , 0x00001000
43
- #endif
44
- .globl __StackTop
45
- .globl __StackLimit
46
- __StackLimit:
47
- .space Stack_Size
48
- .size __StackLimit , . - __StackLimit
49
- __StackTop:
50
- .size __StackTop , . - __StackTop
51
-
52
- . section .heap
53
- . align 3
54
- #ifdef __HEAP_SIZE
55
- . equ Heap_Size , __HEAP_SIZE
56
- #else
57
- . equ Heap_Size , 0x00004000
58
- #endif
59
- .globl __HeapBase
60
- .globl __HeapLimit
61
- __HeapBase:
62
- .space Heap_Size
63
- .size __HeapBase , . - __HeapBase
64
- __HeapLimit:
65
- .size __HeapLimit , . - __HeapLimit
66
-
67
37
. section .isr_vector
68
38
. align 2
69
39
.globl __isr_vector
You can’t perform that action at this time.
0 commit comments