explain dos function call with one illustration


Explain DOS function call with one illustration

DOS function call

In order to use DOS function calls, always place function number into register AH and load all other relevant information into registers, as described in the entry data table. Once this is accomplished, follow with an INT 21H to execute DOS function.

Illustration:      MOV AH, 6

                        MOV DL, 'A'

                        INT 21H

Example demonstrates how to display an ASCII A on the CRT screen at the current cursor position with a DOS function call.

 

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: explain dos function call with one illustration
Reference No:- TGS0331837

Expected delivery within 24 Hours