home *** CD-ROM | disk | FTP | other *** search
- ; Title: PRTSCR.ASM
- ; Author: F. Ho
- ; Date: May 1986
- ; Syntax: call PRTSCR
- ; Note: - prints a screen image
- ;
- public SCRPRT
- ;
- _prog segment byte ; byte aligned
- assume cs:_prog
- ;
- SCRPRT proc far
- push bp
- mov bp,sp
- ;
- int 05h
- ;
- pop bp
- ret
- SCRPRT endp
- _prog ends
- end