diff options
Diffstat (limited to 'share/man/man4')
-rw-r--r-- | share/man/man4/man4.amiga/Makefile | 6 | ||||
-rw-r--r-- | share/man/man4/man4.amiga/joy.4 | 61 |
2 files changed, 64 insertions, 3 deletions
diff --git a/share/man/man4/man4.amiga/Makefile b/share/man/man4/man4.amiga/Makefile index 023831f9e31..2d12af4edad 100644 --- a/share/man/man4/man4.amiga/Makefile +++ b/share/man/man4/man4.amiga/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.2 2000/03/02 14:46:43 todd Exp $ +# $OpenBSD: Makefile,v 1.3 2000/09/03 14:46:46 espie Exp $ # from: @(#)Makefile 8.2 (Berkeley) 2/16/94 MAN= ae.4 afsc.4 ahsc.4 atzsc.4 autoconf.4 console.4 bah.4 ed.4 es.4 gtsc.4 \ - intro.4 ite.4 le.4 mem.4 mfcs.4 mgnsc.4 qn.4 ser.4 wesc.4 zssc.4 + intro.4 ite.4 joy.4 le.4 mem.4 mfcs.4 mgnsc.4 qn.4 ser.4 wesc.4 zssc.4 MLINKS= mem.4 kmem.4 -MANSUBDIR=/amiga +MANSUBDIR=amiga .include <bsd.prog.mk> diff --git a/share/man/man4/man4.amiga/joy.4 b/share/man/man4/man4.amiga/joy.4 new file mode 100644 index 00000000000..41e3a54de75 --- /dev/null +++ b/share/man/man4/man4.amiga/joy.4 @@ -0,0 +1,61 @@ +.\" $OpenBSD: joy.4,v 1.1 2000/09/03 14:46:46 espie Exp $ +.\" +.\" Copyright (c) 2000 Marc Espie +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR +.\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES +.\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +.\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, +.\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT +.\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +.\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +.\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF +.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +.\" +.Dd September 2, 2000 +.Dt JOY 4 amiga +.Os +.Sh NAME +.Nm joy +.Nd +.Tn amiga +joystick driver +.Sh SYNOPSIS +.Cd "joy0 at mainbus0" +.Sh DESCRIPTION +This driver provides access to +.Tn amiga +joysticks. +The lower bit in the minor device number selects the joystick: 0 is the first +joystick and 1 is the second. +.Pp +The joystick connectors also accept mouses. There is no simple way to +find out whether a mouse or a joystick is currently plugged in. +.Pp +The joystick is a digital device. Each +.Fn read +on the file descriptor does return +one byte representing the current state of the joystick, +as a set of ORed values as listed in +.Aq Pa machine/joystick.h . +.Sh FILES +.Bl -tag -width /dev/joy0 -compact +.It Pa /dev/joy0 +first joystick +.It Pa /dev/joy1 +second joystick +.El +.Sh AUTHORS +This very simple driver was written by Marc Espie on +.Ox . |