riscv-os/linker.ld
2025-04-26 18:24:51 +12:00

9 lines
109 B
Text

MEMORY {
rom (rwx) : ORIGIN = 0x80200000, LENGTH = 512K
}
SECTIONS {
.init : {
*(.init)
} > rom
}