Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/m68k/include/asm/atari_joystick.h
26481 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef _LINUX_ATARI_JOYSTICK_H
3
#define _LINUX_ATARI_JOYSTICK_H
4
5
/*
6
* linux/include/linux/atari_joystick.h
7
* header file for Atari Joystick driver
8
* by Robert de Vries ([email protected]) on 19Jul93
9
*/
10
11
void atari_joystick_interrupt(char*);
12
int atari_joystick_init(void);
13
extern int atari_mouse_buttons;
14
15
struct joystick_status {
16
char fire;
17
char dir;
18
int ready;
19
int active;
20
wait_queue_head_t wait;
21
};
22
23
#endif
24
25