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
dinau 2013-08-31 16:00:40 +09:00
parent 7bcdf0b980
commit 8503ccb7a3
4 changed files with 7 additions and 7 deletions

View File

@ -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) }

View File

@ -2,7 +2,7 @@
.section .plivileged_code, "ax"
.section .privileged_code, "ax"
.arm

View File

@ -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) }

View File

@ -2,7 +2,7 @@
.section .plivileged_code, "ax"
.section .privileged_code, "ax"
.arm