diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2018-08-28 14:58:53 +0100 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2018-08-28 14:58:53 +0100 |
| commit | e88de0162cff8bbad80972c1b92355b9d2db0213 (patch) | |
| tree | 625f5544459177fbe54161bc89887b0288a36c29 /link.ld | |
| parent | f85dc5011b3ff2342c6129eafb038ae11fef44a3 (diff) | |
| download | tinyOS-e88de0162cff8bbad80972c1b92355b9d2db0213.tar.xz tinyOS-e88de0162cff8bbad80972c1b92355b9d2db0213.zip | |
Add bootable kernel with basic print function
Diffstat (limited to 'link.ld')
| -rw-r--r-- | link.ld | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +OUTPUT_FORMAT(elf32-i386) +ENTRY(start) +SECTIONS + { + . = 0x100000; + .text : { *(.text) } + .data : { *(.data) } + .bss : { *(.bss) } + }
\ No newline at end of file |