diff options
| author | Felipe Balbi <[email protected]> | 2025-11-07 11:00:15 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-11-07 11:00:15 -0800 |
| commit | 5632acec18cc5906b1625a8facf530db56c73300 (patch) | |
| tree | abf2897f4b2f9814069c64611896be2d42cf2ce8 /memory.x | |
| parent | 47e383545f4aac3bfaec0563429cc721540e665a (diff) | |
| parent | 9590d94ee9ba016f65a13100c429fc56ffe58e40 (diff) | |
Merge pull request #1 from bogdan-petru/import/mcxa276-initial
feat(mcxa276): initial HAL import
Diffstat (limited to 'memory.x')
| -rw-r--r-- | memory.x | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/memory.x b/memory.x new file mode 100644 index 000000000..b47534f18 --- /dev/null +++ b/memory.x | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | /* Memory layout for MCXA276 - RAM execution with cortex-m-rt */ | ||
| 2 | MEMORY | ||
| 3 | { | ||
| 4 | /* FLASH and RAM overlap for RAM-execution experiments. */ | ||
| 5 | FLASH : ORIGIN = 0x20000000, LENGTH = 128K | ||
| 6 | /* RAM overlaps FLASH */ | ||
| 7 | RAM : ORIGIN = 0x20000000, LENGTH = 128K | ||
| 8 | } | ||
| 9 | |||
| 10 | /* Leave symbol and section boundary definitions to cortex-m-rt's link.x. */ | ||
