Skip to content

Commit 2cdd41d

Browse files
committed
Added support for LPC11U24/_301 and LPC11U35_401 in uARM
1 parent 9a27099 commit 2cdd41d

File tree

3 files changed

+34
-0
lines changed

3 files changed

+34
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
LR_IROM1 0x00000000 0x8000 { ; load region size_region (32k)
3+
ER_IROM1 0x00000000 0x8000 { ; load address = execution address
4+
*.o (RESET, +First)
5+
*(InRoot$$Sections)
6+
.ANY (+RO)
7+
}
8+
; 8_byte_aligned(48 vect * 4 bytes) = 8_byte_aligned(0xC0) = 0xC0
9+
; 6KB - 0xC0 = 0x1740
10+
RW_IRAM1 0x100000C0 0x1740 {
11+
.ANY (+RW +ZI)
12+
}
13+
RW_IRAM2 0x20004000 0x800 { ; RW data, USB RAM
14+
.ANY (USBRAM)
15+
}
16+
}
17+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
LR_IROM1 0x00000000 0x10000 { ; load region size_region (64k)
3+
ER_IROM1 0x00000000 0x10000 { ; load address = execution address
4+
*.o (RESET, +First)
5+
*(InRoot$$Sections)
6+
.ANY (+RO)
7+
}
8+
; 8_byte_aligned(48 vect * 4 bytes) = 8_byte_aligned(0xC0) = 0xC0
9+
; 8KB - 0xC0 = 0x1F40
10+
RW_IRAM1 0x100000C0 0x1F40 {
11+
.ANY (+RW +ZI)
12+
}
13+
RW_IRAM2 0x20004000 0x800 { ; RW data, USB RAM
14+
.ANY (USBRAM)
15+
}
16+
}
17+

0 commit comments

Comments
 (0)