/
mil
/
RUST
Обзор
Документация
Войти
/
mil
/
RUST
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
memory.x
17 строк
708 B
mil
first_commit
11 июн 2025, 09:17
11 июн 2025, 09:17
44d3a33
Код
Авторство
О чём код?
MEMORY { /* FLASH and RAM are mandatory memory regions */ /* Update examples/data_overflow.rs if you change these sizes. */ FLASH : ORIGIN = 0x08000000, LENGTH = 1024K RAM : ORIGIN = 0x20000000, LENGTH = 192K /* More memory regions can declared: for example this is a second RAM region */ CCRAM : ORIGIN = 0x10000000, LENGTH = 64K } /* The location of the stack can be overridden using the `_stack_start` symbol. By default it will be placed at the end of the RAM region */ _stack_start = ORIGIN(RAM) + LENGTH(RAM); /* The location of the .text section can be overridden using the `_stext` symbol. By default it will place after .vector_table */ /* _stext = ORIGIN(FLASH) + 0x40c; */