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__ = .;
|
||||
|
||||
|
|
|
|||
|
|
@ -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__ = .;
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
|
||||
|
||||
.section .plivileged_code, "ax"
|
||||
.section .privileged_code, "ax"
|
||||
.arm
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue