From d5e39286f78d89e6f01b492a67353052488805db Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Wed, 25 Jul 2007 02:02:24 +0100 Subject: [PATCH] We probably shouldn't leave interrupts disabled when starting an OS. --- src/arch/i386/image/bootsector.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/arch/i386/image/bootsector.c b/src/arch/i386/image/bootsector.c index d2711a87..0f297a26 100644 --- a/src/arch/i386/image/bootsector.c +++ b/src/arch/i386/image/bootsector.c @@ -80,6 +80,7 @@ int call_bootsector ( unsigned int segment, unsigned int offset, /* Jump to boot sector */ "pushw %%bx\n\t" "pushw %%di\n\t" + "sti\n\t" "lret\n\t" /* Preserved variables */ "\nsaved_ss: .word 0\n\t"