embassy/examples/stm32h755cm7/memory.x

15 lines
300 B
Plaintext
Raw Normal View History

2024-07-08 11:32:23 +00:00
MEMORY
{
FLASH : ORIGIN = 0x08000000, LENGTH = 1024K /* BANK_1 */
RAM : ORIGIN = 0x24000000, LENGTH = 512K /* AXIRAM */
RAM_D3 : ORIGIN = 0x38000000, LENGTH = 64K /* SRAM4 */
}
SECTIONS
{
.ram_d3 :
{
*(.ram_d3.shared_data)
2024-07-08 11:32:23 +00:00
*(.ram_d3)
} > RAM_D3
}