riscv-os/linker.ld

10 lines
109 B
Text
Raw Permalink Normal View History

2025-04-26 18:24:51 +12:00
MEMORY {
rom (rwx) : ORIGIN = 0x80200000, LENGTH = 512K
}
SECTIONS {
.init : {
*(.init)
} > rom
}