From 4a294ee21c029628d029430ba73fe244cfb661df Mon Sep 17 00:00:00 2001 From: Nero <41307858+nero@users.noreply.github.com> Date: Sat, 22 Aug 2020 23:38:11 +0000 Subject: [PATCH] kernel: fix advancing of drive table pointer during drive init --- kernel/drive.asm | 1 + 1 file changed, 1 insertion(+) diff --git a/kernel/drive.asm b/kernel/drive.asm index 72742e0..947e931 100644 --- a/kernel/drive.asm +++ b/kernel/drive.asm @@ -79,5 +79,6 @@ drives_init: ; CX = number of floppy drives in the system pop dx pop cx inc dl + add bx, drive_size loop .loop ret