From 170aa62c8ae2ffadbb47836de9eb03856863de4e Mon Sep 17 00:00:00 2001 From: Max Klein Date: Wed, 12 Oct 2016 21:22:55 +0200 Subject: [PATCH] Fix comment for number of sectors to read --- 07-bootsector-disk/boot_sect_main.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/07-bootsector-disk/boot_sect_main.asm b/07-bootsector-disk/boot_sect_main.asm index 22b603a..ce31ae9 100644 --- a/07-bootsector-disk/boot_sect_main.asm +++ b/07-bootsector-disk/boot_sect_main.asm @@ -3,7 +3,7 @@ mov sp, bp mov bx, 0x9000 ; es:bx = 0x0000:0x9000 = 0x09000 - mov dh, 2 ; read 5 sectors + mov dh, 2 ; read 2 sectors ; the bios sets 'dl' for our boot disk number ; if you have trouble, use the '-fda' flag: 'qemu -fda file.bin' call disk_load