home *** CD-ROM | disk | FTP | other *** search
- ;************************************************************;
- ; ;
- ; Function 04H: Auxiliary Output ;
- ; ;
- ; int aux_out(c) ;
- ; char c; ;
- ; ;
- ; Returns 0. ;
- ; ;
- ;************************************************************;
-
- cProc aux_out,PUBLIC
- parmB c
- cBegin
- mov dl,c ; Get character into DL.
- mov ah,04h ; Set function code.
- int 21h ; Write character to AUX.
- xor ax,ax ; Return 0.
- cEnd
-