mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 06:11:16 +00:00
18 lines
387 B
Text
18 lines
387 B
Text
/* Copyright © 2021 rp-rs organization
|
|
SPDX-License-Identifier: MIT OR Apache-2.0 */
|
|
|
|
MEMORY
|
|
{
|
|
FLASH : ORIGIN = 0x08000000, LENGTH = 1M
|
|
RAM : ORIGIN = 0x24000000, LENGTH = 320K
|
|
SDRAM : ORIGIN = 0x70000000, LENGTH = 16384K
|
|
}
|
|
|
|
_stack_start = ORIGIN(RAM) + LENGTH(RAM);
|
|
|
|
SECTIONS {
|
|
.frame_buffer (NOLOAD) : {
|
|
*(.frame_buffer);
|
|
. = ALIGN(4);
|
|
} > SDRAM
|
|
}
|