From 3926fcb1c3492cdf3d62251ba5bb1a8f7ec4890f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Ortega=20Froysa?= Date: Mon, 26 Feb 2018 18:15:12 +0100 Subject: [PATCH] Only need one hang. --- boot/boot_sect.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot/boot_sect.asm b/boot/boot_sect.asm index 7aad84f..6ea8784 100644 --- a/boot/boot_sect.asm +++ b/boot/boot_sect.asm @@ -10,7 +10,7 @@ KERNEL_OFFSET: equ 0x1000 ; kernel memory offset call load_kernel ; load our kernel from memory call switch_to_pm ; switch to 32-bit protected mode - jmp $ + ;jmp $ %include "print.asm" %include "print32.asm" @@ -41,7 +41,7 @@ BEGIN_PM: call KERNEL_OFFSET - jmp $ + ;jmp $ ;;; ; Data