mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-27 05:44:08 +00:00
29 lines
686 B
Text
29 lines
686 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
|
|
OSPI_ROM : ORIGIN = 0x90000000, LENGTH = 65536K
|
|
}
|
|
|
|
_stack_start = ORIGIN(RAM) + LENGTH(RAM);
|
|
|
|
SECTIONS {
|
|
.frame_buffer (NOLOAD) : {
|
|
. = ALIGN(4);
|
|
*(.frame_buffer);
|
|
. = ALIGN(4);
|
|
} > SDRAM
|
|
.slint_assets : {
|
|
. = ALIGN(4);
|
|
__s_slint_assets = .;
|
|
*(.slint_assets);
|
|
. = ALIGN(4);
|
|
} > SDRAM AT>OSPI_ROM
|
|
|
|
__e_slint_assets = .;
|
|
__si_slint_assets = LOADADDR(.slint_assets);
|
|
}
|