home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 15 / CDACTUAL15.iso / cdactual / program / asm / PRTSCR.ZIP / PRTSCR.ASM next >
Encoding:
Assembly Source File  |  1993-01-04  |  488 b   |  23 lines

  1. ;    Title:    PRTSCR.ASM
  2. ;    Author:    F. Ho
  3. ;    Date:    May 1986
  4. ;    Syntax:    call PRTSCR
  5. ;    Note:    - prints a screen image
  6. ;
  7. public SCRPRT       
  8. ;                                              
  9. _prog  segment byte    ; byte aligned         
  10. assume cs:_prog                               
  11. ;                                              
  12. SCRPRT proc    far
  13.        push    bp
  14.        mov     bp,sp
  15. ;
  16.        int     05h
  17. ;
  18.        pop     bp
  19.        ret
  20. SCRPRT endp
  21. _prog  ends
  22.        end
  23.