home *** CD-ROM | disk | FTP | other *** search
- _saver39 dw ?
- _WRITE: ;writes to a file.
- mov ds,cs
- pop _saver39
-
- Pop DX ;get buffer offset.
- Pop DS ;get buffer segment.
- Pop CX ;get number of bytes to write.
- Pop BX ;get the handle.
-
- Mov AH,40H ;write to the a file.
- Int 21H ;call dos.
- push ax ;push number of bytes written or error code.
- ;
- mov ds,cs
- push _saver39
- Ret
-