aboutsummaryrefslogtreecommitdiff
path: root/LPC1114FN28_102_DIP28_bootloader/eXodusino_Release_mem.ld
diff options
context:
space:
mode:
authorlynxeyed-atsu <lynxeyed@xj9.so-net.ne.jp>2012-08-09 22:13:57 +0900
committerlynxeyed-atsu <lynxeyed@xj9.so-net.ne.jp>2012-08-09 22:13:57 +0900
commita936b176fe2aae6ac6378b73fcaad1a61cb8eca3 (patch)
treef302e299bc5add3a7117b9f93b993cf741a2ee21 /LPC1114FN28_102_DIP28_bootloader/eXodusino_Release_mem.ld
parentb9cff0a1eac16d0351053ab41237a69dfcb3ca5e (diff)
changed MCU settings
We can switch linker script each MCU using Configuration tab of LPCXpresso project's properties.
Diffstat (limited to 'LPC1114FN28_102_DIP28_bootloader/eXodusino_Release_mem.ld')
-rw-r--r--LPC1114FN28_102_DIP28_bootloader/eXodusino_Release_mem.ld21
1 files changed, 21 insertions, 0 deletions
diff --git a/LPC1114FN28_102_DIP28_bootloader/eXodusino_Release_mem.ld b/LPC1114FN28_102_DIP28_bootloader/eXodusino_Release_mem.ld
new file mode 100644
index 0000000..739d372
--- /dev/null
+++ b/LPC1114FN28_102_DIP28_bootloader/eXodusino_Release_mem.ld
@@ -0,0 +1,21 @@
+/*
+ * GENERATED FILE - DO NOT EDIT
+ * (C) Code Red Technologies Ltd, 2008-2012
+ * Linker script memory definitions
+ * Created from LinkMemoryTemplate
+ * By LPCXpresso v4.2.4 [Build 267] [2012-07-11] on Fri Jul 13 01:18:22 JST 2012)
+*/
+
+MEMORY
+{
+ /* Define each memory region */
+ MFlash32 (rx) : ORIGIN = 0x1000, LENGTH = 0x7000 /* 32k */
+ RamLoc8 (rwx) : ORIGIN = 0x10000000, LENGTH = 0x0FE0 /* 8k */
+
+}
+ /* Define a symbol for the top of each memory region */
+ __top_MFlash32 = 0x1000 + 0x7000;
+ __top_RamLoc8 = 0x10000000 + 0x0FE0;
+
+
+