summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-06-09 11:33:13 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-06-09 11:33:13 +0200
commitc5320e104bf9cf6f8ec897d5a2b6679d21885906 (patch)
tree153c3109811d18656d61f0bb3f2943203a018e19
parent231cd63a1bdc77ed0246a4e07aee3ead90e567f2 (diff)
downloadabaos-c5320e104bf9cf6f8ec897d5a2b6679d21885906.tar.gz
abaos-c5320e104bf9cf6f8ec897d5a2b6679d21885906.tar.bz2
reverted drive reset
-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