mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-21 14:22:33 +00:00
14 lines
276 B
Plaintext
14 lines
276 B
Plaintext
MEMORY
|
|
{
|
|
FLASH : ORIGIN = 0x08000000, LENGTH = 2048K /* BANK_1 + BANK_2 */
|
|
RAM : ORIGIN = 0x24000000, LENGTH = 512K /* SRAM */
|
|
RAM_D3 : ORIGIN = 0x38000000, LENGTH = 64K /* SRAM4 */
|
|
}
|
|
|
|
SECTIONS
|
|
{
|
|
.ram_d3 :
|
|
{
|
|
*(.ram_d3)
|
|
} > RAM_D3
|
|
} |