-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only differences in CMSIS now are: * Top of RAM (0x10001000 vs 0x10002000) * Clock configuration (IRC/System PLL vs System Oscillator/IRC)
- Loading branch information
1 parent
979bba6
commit a4badc7
Showing
5 changed files
with
141 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 5 additions & 3 deletions
8
libraries/mbed/targets/cmsis/TARGET_NXP/TARGET_LPC11CXX/TOOLCHAIN_ARM_MICRO/LPC1114.sct
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
|
||
LR_IROM1 0x00000000 0x8000 { ; load region size_region (32k) | ||
|
||
ER_IROM1 0x00000000 0x8000 { ; load address = execution address | ||
*.o (RESET, +First) | ||
*(InRoot$$Sections) | ||
.ANY (+RO) | ||
} | ||
; 8_byte_aligned(48 vect * 4 bytes) = 8_byte_aligned(0xC0) = 0xC0 | ||
; 8KB - 0xC0 = 0xF40 | ||
RW_IRAM1 0x100000C0 0xF40 { | ||
|
||
; 48 vectors * 4 bytes = 0xC0 for remap | ||
RW_IRAM1 (0x10000000+0xC0) (0x1000-0xC0) { | ||
.ANY (+RW +ZI) | ||
} | ||
|
||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.