]> Git Repo - qemu.git/blob - tests/multiboot/link.ld
works with less than base ISA qemu-system-riscv32 -M virt -bios none -kernel output...
[qemu.git] / tests / multiboot / link.ld
1 ENTRY(_start)
2
3 SECTIONS
4 {
5     . = 0x100000;
6     .text : AT(ADDR(.text)) {
7         *(multiboot)
8         *(.text)
9     }
10     .data ALIGN(4096) : AT(ADDR(.data)) {
11         *(.data)
12     }
13     .rodata ALIGN(4096) : AT(ADDR(.rodata)) {
14         *(.rodata)
15     }
16     .bss ALIGN(4096) : {
17         *(.bss)
18     }
19 }
This page took 0.024346 seconds and 4 git commands to generate.