home *** CD-ROM | disk | FTP | other *** search
- PAGE 54,132
- TITLE FORM-FEED Program.
- ;
- ; This program sends a Form Feed code to the standard
- ; printer device, [ usually PRN: or LPT1:].
- ;
- ; Routine by Harry M. Murphy, 22 March 1986.
- ;
- P@FF SEGMENT 'CODE'
- ASSUME CS:P@FF
- FF: MOV DL,0CH ;Put Form-Feed code in DL,
- MOV AH,05H ; "printer output" code in AH
- INT 21H ; and call DOS to do it.
- MOV AX,4C00H ;Put "stop process" code in AH
- INT 21H ; and call DOS to do it.
- P@FF ENDS
- END FF