From: Ben Pfaff Date: Wed, 6 Apr 2005 18:47:26 +0000 (+0000) Subject: Only need single 0x90. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pintos-anon;a=commitdiff_plain;h=3464ff25514b2c58209180b7831090ea167b9bc5 Only need single 0x90. --- diff --git a/src/threads/kernel.lds.S b/src/threads/kernel.lds.S index 3b7f8b1..28721e2 100644 --- a/src/threads/kernel.lds.S +++ b/src/threads/kernel.lds.S @@ -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) }