]> Git Repo - qemu.git/blob - tests/multiboot/link.ld
tests: Multiboot mmap test case
[qemu.git] / tests / multiboot / link.ld
1 ENTRY(_start)
2
3 SECTIONS
4 {
5     . = 0x100000;
6     .text : {
7         *(multiboot)
8         *(.text)
9     }
10     .data ALIGN(4096) : {
11         *(.data)
12     }
13     .rodata ALIGN(4096) : {
14         *(.rodata)
15     }
16     .bss ALIGN(4096) : {
17         *(.bss)
18     }
19 }
This page took 0.024942 seconds and 4 git commands to generate.