Projet_SETI_RISC-V/riscv-gnu-toolchain/qemu/tests/tcg/i386/system/kernel.ld
2023-03-06 14:48:14 +01:00

23 lines
196 B
Text

SECTIONS {
. = 0x100000;
.text : {
__load_st = .;
*(.head)
*(.text)
}
.rodata : {
*(.rodata)
}
.data : {
*(.data*)
__load_en = .;
}
.bss : {
*(.bss)
__bss_en = .;
}
}