Page 1 of 1
another question about int 13h
Posted: Mon Feb 25, 2002 12:00 am
by Stefan
How can I detect all drives with int 13h, I mean floppyes, hard disks ... ?
Can I detect with int 13h also CDROMs?
Thank you!
RE:another question about int 13h
Posted: Tue Feb 26, 2002 12:00 am
by Chris Giese
>On 2002-02-25 03:52:49, Stefan wrote:
>How can I detect all drives with int 13h, I mean floppyes, hard disks ... ?
I think INT 13h AH=08h DL=0 will put the number of
floppy drives in DL; and INT 13h AH=08h DL=80h
will put the number of hard drives in DL.
>Can I detect with int 13h also CDROMs?
IIRC, the INT 13h services for CD-ROMs only work
if you _boot_ from the CD-ROM. Otherwise, they
are disabled.
RE:another question about int 13h
Posted: Sun Mar 03, 2002 12:00 am
by Stefan
thank you