/* * Apple // emulator for *nix * * This software package is subject to the GNU General Public License * version 2 or later (your choice) as published by the Free Software * Foundation. * * THERE ARE NO WARRANTIES WHATSOEVER. * */ /* * 65c02 CPU Timing Support. * * Copyleft 2013 Aaron Culliney * */ #ifndef _JOYSTICK_H_ #define _JOYSTICK_H_ #define JOY_RANGE 0x100 #define HALF_JOY_RANGE 0x80 void c_open_joystick(); void c_close_joystick(); void c_calibrate_joystick(); #endif // whole file