home *** CD-ROM | disk | FTP | other *** search
- _saver25 dw ?
- _READ:
- mov ds,cs
- pop _saver25
-
- Pop DX ;get buffer offset.
- Pop DS ;get buffer segment.
- Pop CX ;get the number of bytes to read.
- Pop BX ;get the handle.
-
- Mov AH,3FH ;read a file.
- Int 21H
- push ax ;save byte read or if error, error code.
-
- mov ds,cs
- push _saver25
- Ret
-