-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(Tools): Update Keil support for ECC enabled versions of the MAX32…
…675 (#1001) Co-authored-by: lorne-maxim <[email protected]> Co-authored-by: Sihyung Woo <[email protected]>
- Loading branch information
1 parent
b87895f
commit 47408bb
Showing
3 changed files
with
39 additions
and
8 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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
LR_IROM1 0x10000000 0x60000 | ||
{ | ||
ER_IROM1 0x10000000 0x60000 | ||
{ | ||
*.o (RESET, +First) | ||
*(InRoot$$Sections) | ||
.ANY (+RO) | ||
.ANY (+XO) | ||
} | ||
|
||
PAD_IROM1 +0 ALIGN 16 EMPTY 0 | ||
{ | ||
; This empty region forces the previous region to | ||
; always be a multiple of 16 bytes. This is | ||
; necessary for devices where flash ECC is enabled. | ||
} | ||
|
||
RW_IRAM1 0x20000000 0x00028000 | ||
{ | ||
.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