summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/stage1_functions.asm8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/stage1_functions.asm b/src/stage1_functions.asm
index 48d466c..c9ed1a5 100644
--- a/src/stage1_functions.asm
+++ b/src/stage1_functions.asm
@@ -106,10 +106,6 @@ current_row:
; IN dl: drive to read from
read_from_disk:
-
- mov ax, 0x00 ; reset drive
- int 0x13
-
mov ah, 0x02 ; read sectors from drive
mov al, NOF_LOAD_SECTORS ; read 1 sector
@@ -131,10 +127,6 @@ read_from_disk:
ret
.read_error:
- mov ax, 0x00 ; reset drive
- int 0x13
- jmp read_from_disk
-
mov si, DISK_ERROR
call print_string
mov dh, 0