mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-13 19:18:56 +00:00
10 lines
213 B
Plaintext
10 lines
213 B
Plaintext
|
/* STM32F205RE - 512K Flash, 128K RAM */
|
||
|
MEMORY
|
||
|
{
|
||
|
rom (rx) : ORIGIN = 0x20000000, LENGTH = 20K
|
||
|
ram (rwx) : ORIGIN = ORIGIN(rom) + LENGTH(rom),
|
||
|
LENGTH = 128K - LENGTH(rom)
|
||
|
}
|
||
|
|
||
|
INCLUDE libopencm3_stm32f2.ld
|