X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fthreads%2Fkernel.lds.S;h=28721e2832a27a73c895a98daa89cd47471027e9;hb=a85e535e696138054a7b461ea8072f0d76c5b668;hp=ce5d23d39b38f395b9580fb3dd78c8bfbc046b6f;hpb=dfb64e1c2e16f8e5183de565bd4819d875379cee;p=pintos-anon diff --git a/src/threads/kernel.lds.S b/src/threads/kernel.lds.S index ce5d23d..28721e2 100644 --- a/src/threads/kernel.lds.S +++ b/src/threads/kernel.lds.S @@ -1,4 +1,4 @@ -#include "loader.h" +#include "threads/loader.h" OUTPUT_FORMAT("elf32-i386") OUTPUT_ARCH("i386") @@ -11,7 +11,7 @@ SECTIONS _start = .; /* Kernel starts with code, followed by read-only data and writable data. */ - .text : { *(.start) *(.text) } = 0x9090 + .text : { *(.start) *(.text) } = 0x90 .rodata : { *(.rodata) *(.rodata.*) } .data : { *(.data) }