-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Custom memory layout for Stax and Flex (44k ram compared to 30k for n…
…ano s plus)
- Loading branch information
1 parent
d690db9
commit d82d610
Showing
4 changed files
with
16 additions
and
5 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
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,10 @@ | ||
MEMORY | ||
{ | ||
FLASH (rx) : ORIGIN = 0xc0de0000, LENGTH = 400K | ||
DATA (r) : ORIGIN = 0xc0de0000, LENGTH = 400K | ||
SRAM (rwx) : ORIGIN = 0xda7a0000, LENGTH = 44K | ||
} | ||
|
||
PAGE_SIZE = 512; | ||
STACK_SIZE = 1500; | ||
END_STACK = ORIGIN(SRAM) + LENGTH(SRAM); |