diff options
| author | Miguel <m.i@gmx.at> | 2018-08-31 11:49:07 +0200 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2018-08-31 11:49:07 +0200 |
| commit | 47d7e8e4527c663dd1a0c04a4ea5624589464895 (patch) | |
| tree | d6d5ef82f1089a9ab058b27c427c1463db0fae60 /linker.ld | |
| parent | 4404fa9b3d98646f942e32146722a9d0a68edc13 (diff) | |
various improvmenets
* added debugging symbols to nasm output
* started implementing an unified interrupt interface
* moved smp entry point to kernel image!
Diffstat (limited to 'linker.ld')
| -rw-r--r-- | linker.ld | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -2,6 +2,12 @@ ENTRY(_start) SECTIONS { + . = 0x7000; + .text BLOCK(4K) : ALIGN(4K) + { + *(.smp) + } + . = 1M; kernel_start = .; |
