CD-ROM commands

Hi,

I am looking for CD-ROM commands guide,

I can't find any reference to simple CD commands

like "eject" "close" etc.




Please if someone knows how to do this help me !





Comments

  • I have a/some docs about it (don't recall I have a sample-program) somewhere. If you want to, I can look it up.


  • : I have a/some docs about it (don't recall I have a sample-program) somewhere. If you want to, I can look it up.


    The unit on the Simtel Archives does not work. I don't know if that's

    what you're referring to. Here's the only working procedure for the CD-ROM

    I've ever found.




    Procedure EjectDisk(Drive:Byte);

    {Drive is 0 for default, 1 for A, 2 for B, etc.}

    begin;

    asm;

    MOV AX, 440Dh {Generic IOCTL}

    MOV BX, Drive

    MOV CH, 8

    MOV CL, 49h {Eject removable media}

    INT 21h

    end;

    end;




    URL:http://acheronx.resnet.tamu.edu

  • : Hi,

    : I am looking for CD-ROM commands guide,

    : I can't find any reference to simple CD commands

    : like "eject" "close" etc.


    :

    : Please if someone knows how to do this help me !


    You'll be able to find almost anything you want to

    know with this CDROM FAQ...

    ftp://x2ftp.oulu.fi/pub/msdos/programming/faq/cdromfaq.100




    URL:ftp://x2ftp.oulu.fi/pub/msdos/programming/faq/cdromfaq.100

Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories