aboutsummaryrefslogtreecommitdiff
path: root/examples/nrf9160/memory.x
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-06-21 20:19:54 +0200
committerUlf Lilleengen <[email protected]>2024-08-21 12:44:07 +0200
commit160e1c38ceab0ae8876c2bf5f12438edd4d9b018 (patch)
tree9eb219e82e95eb198e03bd9207cd08dd055a21a3 /examples/nrf9160/memory.x
parentaff66b9695a70222b20c19585f04df2ecbabccb1 (diff)
Add embassy-net-nrf91.
Diffstat (limited to 'examples/nrf9160/memory.x')
-rw-r--r--examples/nrf9160/memory.x8
1 files changed, 6 insertions, 2 deletions
diff --git a/examples/nrf9160/memory.x b/examples/nrf9160/memory.x
index 4c7d4ebf0..e33498773 100644
--- a/examples/nrf9160/memory.x
+++ b/examples/nrf9160/memory.x
@@ -1,5 +1,9 @@
1MEMORY 1MEMORY
2{ 2{
3 FLASH : ORIGIN = 0x00000000, LENGTH = 1024K 3 FLASH : ORIGIN = 0x00000000, LENGTH = 1024K
4 RAM : ORIGIN = 0x20018000, LENGTH = 160K 4 RAM : ORIGIN = 0x20010000, LENGTH = 192K
5 IPC : ORIGIN = 0x20000000, LENGTH = 64K
5} 6}
7
8PROVIDE(__start_ipc = ORIGIN(IPC));
9PROVIDE(__end_ipc = ORIGIN(IPC) + LENGTH(IPC));