assembly - INT 13h, get status of last op -


i'm writing bootloader bios in 16-bit real mode, using qemu emulator.

i have code fails read hd. that's ok, bothers me when try status code operation using "get status of last drive operation".

according this wikipedia resource, can set ah 1, , set dl desired drive (which i've verified 0x80). then, when invoke int 13h, al should have status code in it.

however, when this, carry flag gets set, indicating attempt read status failed.

other specifying wrong drive, don't see how possibly fail.

so question is, what ways command (int 13h, ah 01h) possibly fail?

here's code:

get_status:     mov ah, 0x01    ; status fxn     mov dl, 0x80    ; 0x80 our drive     int 0x13        ; call fxn      jc print_status_failure     jmp $  print_status_failure:     mov ax, fail_msg     call print_string     jmp $ 

then, when invoke int 13h, al should have status code in it.

bios function 01h int 13h returns result in ah register. carry flag not defined , should never test failure after having invoked function!


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -