thank you.
MSCDEX appears to use the Multiplexer Interrupt (2Fh),Functions 440Dh, and their subfunctions.
The function to eject removable media is:
MOV AX, 440DhMOV BX, DriveNumMOV CH, 8h ;Device catagoryMOV CL, 49h ;Eject Removable mediaINT 2Fh
Where DriveNum is 1 for A, 2 for B, etc.
URL:http://acheronx.resnet.tamu.edu
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
MSCDEX appears to use the Multiplexer Interrupt (2Fh),
Functions 440Dh, and their subfunctions.
The function to eject removable media is:
MOV AX, 440Dh
MOV BX, DriveNum
MOV CH, 8h ;Device catagory
MOV CL, 49h ;Eject Removable media
INT 2Fh
Where DriveNum is 1 for A, 2 for B, etc.
URL:http://acheronx.resnet.tamu.edu