aboutsummaryrefslogtreecommitdiff
path: root/memory.x
diff options
context:
space:
mode:
authorFelipe Balbi <[email protected]>2025-11-13 13:17:44 -0800
committerGitHub <[email protected]>2025-11-13 13:17:44 -0800
commit77b2c602a60e41c7c977003a6d40367ac285930e (patch)
tree6a6490c883f84658c992af4351b8d8a8d8e1c1e4 /memory.x
parentf4b8ae36bec40a15bedd3c0493e4822f9c5238dd (diff)
Move examples to a package of their own (#16)
* Move examples to a package of their own * cargo +nightly fmt * Add missing safety doc * cargo clippy examples * fmt again --------- Co-authored-by: Felipe Balbi <[email protected]>
Diffstat (limited to 'memory.x')
-rw-r--r--memory.x10
1 files changed, 0 insertions, 10 deletions
diff --git a/memory.x b/memory.x
deleted file mode 100644
index b47534f18..000000000
--- a/memory.x
+++ /dev/null
@@ -1,10 +0,0 @@
1/* Memory layout for MCXA276 - RAM execution with cortex-m-rt */
2MEMORY
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. */