diff options
Diffstat (limited to 'tests/tcg/i386/system/kernel.ld')
-rw-r--r-- | tests/tcg/i386/system/kernel.ld | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/tcg/i386/system/kernel.ld b/tests/tcg/i386/system/kernel.ld new file mode 100644 index 000000000..27ea5bbe0 --- /dev/null +++ b/tests/tcg/i386/system/kernel.ld @@ -0,0 +1,23 @@ +SECTIONS { + . = 0x100000; + + .text : { + __load_st = .; + *(.head) + *(.text) + } + + .rodata : { + *(.rodata) + } + + .data : { + *(.data*) + __load_en = .; + } + + .bss : { + *(.bss) + __bss_en = .; + } +} |