mirror of https://github.com/ARMmbed/mbed-os.git
LPC2368 [GCC_ARM, GCC_CR]:
1. Added: GCC_CR toolchain ID for LPC2368. (targets.py) 2. Modified: Startup codes for GCC_ARM and GCC_CR toolchain. 3. Verified: "ticker" and "basic" test program work well, so far. (Fixed typo.)pull/50/head
parent
7bcdf0b980
commit
8503ccb7a3
|
|
@ -48,7 +48,7 @@ SECTIONS
|
|||
.text : {
|
||||
__privileged_code_start__ = . ;
|
||||
KEEP( *( .vectors ) )
|
||||
KEEP( *( .privileged_code ) )
|
||||
*( .privileged_code )
|
||||
|
||||
__privileged_code_end__ = .;
|
||||
|
||||
|
|
@ -142,7 +142,7 @@ SECTIONS
|
|||
/* Heap starts here and grows up in memory */
|
||||
. = ALIGN( 8 ) ;
|
||||
__heap_start__ = . ;
|
||||
end = . ;
|
||||
end = . ;
|
||||
|
||||
.stab 0 (NOLOAD) : { *(.stab) }
|
||||
.stabstr 0 (NOLOAD) : { *(.stabstr) }
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
|
||||
|
||||
.section .plivileged_code, "ax"
|
||||
.section .privileged_code, "ax"
|
||||
.arm
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ SECTIONS
|
|||
.text : {
|
||||
__privileged_code_start__ = . ;
|
||||
KEEP( *( .vectors ) )
|
||||
KEEP( *( .privileged_code ) )
|
||||
*( .privileged_code )
|
||||
|
||||
__privileged_code_end__ = .;
|
||||
|
||||
|
|
@ -144,8 +144,8 @@ SECTIONS
|
|||
/* Heap starts here and grows up in memory */
|
||||
. = ALIGN( 8 ) ;
|
||||
__heap_start__ = . ;
|
||||
_pvHeapStart = . ;
|
||||
end = . ;
|
||||
_pvHeapStart = . ;
|
||||
end = . ;
|
||||
|
||||
.stab 0 (NOLOAD) : { *(.stab) }
|
||||
.stabstr 0 (NOLOAD) : { *(.stabstr) }
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
|
||||
|
||||
.section .plivileged_code, "ax"
|
||||
.section .privileged_code, "ax"
|
||||
.arm
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue