mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-05 06:59:01 +00:00
27 lines
605 B
Plaintext
27 lines
605 B
Plaintext
/* STM32F205RG - 1024K Flash, 128K RAM */
|
|
/* program starts at 0x08010000 */
|
|
MEMORY
|
|
{
|
|
rom (rx) : ORIGIN = 0x08010000, LENGTH = 1024K - 64K
|
|
ram (rwx) : ORIGIN = 0x20000000, LENGTH = 128K
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.confidential (NOLOAD) : {
|
|
*(confidential)
|
|
ASSERT ((SIZEOF(.confidential) <= 32K), "Error: Confidential section too big!");
|
|
} >ram
|
|
}
|
|
|
|
INCLUDE cortex-m-generic.ld
|
|
|
|
_ram_start = ORIGIN(ram);
|
|
_ram_end = ORIGIN(ram) + LENGTH(ram);
|
|
_stay_in_bootloader_flag_addr = ABSOLUTE(0x20010000);
|
|
_stack = _ram_end - 8;
|
|
__stack_chk_guard = _ram_end - 8;
|
|
system_millis = _ram_end - 4;
|
|
|
|
_data_size = SIZEOF(.data);
|