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