From 77b2c602a60e41c7c977003a6d40367ac285930e Mon Sep 17 00:00:00 2001 From: Felipe Balbi Date: Thu, 13 Nov 2025 13:17:44 -0800 Subject: 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 --- memory.x | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 memory.x (limited to 'memory.x') diff --git a/memory.x b/memory.x deleted file mode 100644 index b47534f18..000000000 --- a/memory.x +++ /dev/null @@ -1,10 +0,0 @@ -/* Memory layout for MCXA276 - RAM execution with cortex-m-rt */ -MEMORY -{ - /* FLASH and RAM overlap for RAM-execution experiments. */ - FLASH : ORIGIN = 0x20000000, LENGTH = 128K - /* RAM overlaps FLASH */ - RAM : ORIGIN = 0x20000000, LENGTH = 128K -} - -/* Leave symbol and section boundary definitions to cortex-m-rt's link.x. */ -- cgit