From 3464ff25514b2c58209180b7831090ea167b9bc5 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 6 Apr 2005 18:47:26 +0000 Subject: [PATCH] Only need single 0x90. --- src/threads/kernel.lds.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } -- 2.30.2