1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-10 18:09:00 +00:00
trezor-firmware/memory_app_fastflash.ld

24 lines
459 B
Plaintext
Raw Normal View History

2018-06-27 16:17:44 +00:00
/* STM32F205RG - 1024K Flash, 128K RAM */
MEMORY
{
2017-07-04 17:34:25 +00:00
rom (rx) : ORIGIN = 0x20000000, LENGTH = 32K
2017-06-10 19:15:12 +00:00
ram (rwx) : ORIGIN = 0x20000000 + LENGTH(rom),
LENGTH = 128K - LENGTH(rom)
}
SECTIONS
{
.confidential (NOLOAD) : {
*(confidential)
2018-10-24 11:58:17 +00:00
ASSERT ((SIZEOF(.confidential) <= 32K), "Error: Confidential section too big!");
} >ram
}
INCLUDE libopencm3_stm32f2.ld
_ram_start = ORIGIN(ram);
_ram_end = ORIGIN(ram) + LENGTH(ram);
_data_size = SIZEOF(.data);