emcyfra/libpqscheme.ld

24 lines
398 B
Plaintext
Raw Normal View History

2025-02-17 09:09:14 +00:00
MEMORY
{
2025-02-17 23:46:39 +00:00
FLASH (rx) : ORIGIN = 0x00300000, LENGTH = 0x00100000 /* Runner */
2025-02-17 09:09:14 +00:00
RAM (rwx) : ORIGIN = 0x00000000, LENGTH = 16K
}
SECTIONS
{
2025-02-17 23:46:39 +00:00
.magic_header : {
LONG(0x88DAD0F2) /* Magic header containing */
LONG(ADDR(.text)) /* Entry point */
} > RAM
2025-02-17 09:09:14 +00:00
.text : {
*(.text)
*(.rodata)
2025-02-17 23:49:17 +00:00
} > RAM
2025-02-17 09:09:14 +00:00
.data : {
*(.data)
} > RAM
2025-02-17 23:46:39 +00:00
}