Disk read stuff

pull/10/head
E. Almqvist 4 years ago
parent 572a66b6eb
commit b5d9cf5c89
  1. 21
      src/bootloader_bios_disk.asm

@ -1,5 +1,24 @@
disk_read: disk_read:
pusha pusha
push dx
mov ah, BIOS_DISK_READ mov ah, BIOS_DISK_READ
mov al, dh ; number of sectors to read mov al, dh ; sector count
mov cl, 0x02
mov ch, 0x00 ; read from first cylinder
mov dh, 0x00 ; head
; data pointer: es:bx (standard)
int BIOS_DISK_INT ; do the interrupt
jc disk_error ; if flag is set then jump to error
disk_error:
mov bx, DISK_ERROR
call println
mov dh, ah
DISK_ERROR: db "Disk read error", ASCII_END
SECTORS_ERROR: db "Invalid number of sectors read", ASCII_END

Loading…
Cancel
Save