home *** CD-ROM | disk | FTP | other *** search
- program JoyDemo4;
-
- {
- Author: David Howorth
- Last updated: March 30, 1987
- Application: A demonstration of function JoystickPresent.
- }
-
- var
- ch : char;
-
- {$I JOYPRSNT.INC}
-
- begin
- clrscr;
- writeln(' JOYSTICK DEMONSTRATION NUMBER 4');
- gotoxy(1,7);
- writeln('This is just a test of the function JoystickPresent, which indicates,');
- writeln('as you might guess, whether a joystick is present.');
- writeln;
- if JoystickPresent
- then writeln('You have one.')
- else writeln('You don''t have one attached.');
- writeln;
- writeln;
- writeln('Press any key to end demo.');
- read(kbd,ch);
- clrscr;
- end.