Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2 | Rev 16 | ||
---|---|---|---|
Line 53... | Line 53... | ||
53 | ENTRY(Reset_Handler) |
53 | ENTRY(Reset_Handler) |
54 | 54 | ||
55 | /* Highest address of the user mode stack */ |
55 | /* Highest address of the user mode stack */ |
56 | _estack = 0x20005000; /* end of RAM */ |
56 | _estack = 0x20005000; /* end of RAM */ |
57 | /* Generate a link error if heap and stack don't fit into RAM */ |
57 | /* Generate a link error if heap and stack don't fit into RAM */ |
58 | _Min_Heap_Size = 0x200; /* required amount of heap */ |
58 | _Min_Heap_Size = 0x400; /* required amount of heap */ |
59 | _Min_Stack_Size = 0x400; /* required amount of stack */ |
59 | _Min_Stack_Size = 0x800; /* required amount of stack */ |
60 | 60 | ||
61 | /* Specify the memory areas */ |
61 | /* Specify the memory areas */ |
62 | MEMORY |
62 | MEMORY |
63 | { |
63 | { |
64 | RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 20K |
64 | RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 20K |