/*
	ff.C

	Version 1.5

	Form Feed

	Copyright (C) 1993, Geoff Friesen B.Sc.
	All rights reserved.

	Developed with: Borland C++ 3.1
*/

/*
	set ti=c:\borlandc\tsr\tsrlib
	t ff -hl
*/

#if !defined(__TINY__)
#error Tiny Memory Model Expected
#endif

#include "tsrlib.H"

char *title = "\r\n"

"ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»\r\n"
"º ±±±±± ±±±±±                             º\r\n"
"º ±     ±                                 º\r\n"
"º ±     ±                                 º\r\n"
"º ±±±±  ±±±±  Version 1.5                 º\r\n"
"º ±     ±                                 º\r\n"
"º ±     ±                                 º\r\n"
"º ±     ±                                 º\r\n"
"º                                         º\r\n"
"º Copyright (C) 1993, Geoff Friesen B.Sc. º\r\n"
"º All rights reserved.                    º\r\n"
"ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ¼\r\n"
"$";

#define	LPT1	0

void main (void)
{
   _DX = LPT1;
   _AL = CR;
   _AH = 0;
   geninterrupt(0x17);

   _DX = LPT1;
   _AL = FF;
   _AH = 0;
   geninterrupt(0x17);
}