blob: 12c727f0160e52820eae60be99e4fbc70a6e39ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* Copyright 2021 Birte Kristina Friesel
*
* SPDX-License-Identifier: CC0-1.0
*/
MEMORY {
rom (rx) : ORIGIN = 0x00000000, LENGTH = 256K
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 32K
}
INCLUDE cortex-m-generic.ld
|