I want fetch the parameters of my hard disk. Using the technique described here.
This is code showing normal parameters of floppy disk:
mov dl,00h
mov ah,08h
int 13h
This is code, showing not valid parameters of hard disk (may be, my hard disk space is big (LBA)):
mov dl,80h
mov ah,08h
int 13h
And I've written this
…