From: HimbeerserverDE Date: Mon, 12 Sep 2022 12:42:38 +0000 (+0200) Subject: Read from correct hard drive X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=1d423d83b5ab78dc15fd13f2e3a37a09a4cfe419;p=loadnothing.git Read from correct hard drive --- diff --git a/stage1/boot.asm b/stage1/boot.asm index 7d6293d..093eca5 100644 --- a/stage1/boot.asm +++ b/stage1/boot.asm @@ -73,7 +73,7 @@ boot: xor ch, ch ; Cylinder 0 mov cl, 2 ; Second sector, they start at 1 xor dh, dh ; Head 0 - xor dl, dl ; Drive 0 + mov dl, 0x80 ; Hard Drive 1 mov bx, STAGE2START ; Memory address to load stage 2 into int 0x13