From 7bc131b3a42b0bd8f8313f5ff078717270ed95a7 Mon Sep 17 00:00:00 2001 From: HimbeerserverDE Date: Sun, 11 Sep 2022 21:17:29 +0200 Subject: [PATCH] Jump to boot instead of calling --- stage1/boot.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stage1/boot.asm b/stage1/boot.asm index 9201cf8..096a401 100644 --- a/stage1/boot.asm +++ b/stage1/boot.asm @@ -7,7 +7,7 @@ mov ds, ax mov es, ax mov bx, 0x8000 -call boot +jmp boot ; Print al register print_al: -- 2.44.0