forked from fungos/iAmiga
-
Notifications
You must be signed in to change notification settings - Fork 17
/
JoypadKey.h
34 lines (30 loc) · 1 KB
/
JoypadKey.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Created by Emufr3ak on 28.05.2015
//
// iUAE is free software: you may copy, redistribute
// and/or modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation, either version 2 of the
// License, or (at your option) any later version.
//
// This file is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
//along with this program; if not, write to the Free Software
//Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define BTN_A 0
#define BTN_B 1
#define BTN_X 2
#define BTN_Y 3
#define BTN_L1 5
#define BTN_L2 7
#define BTN_R1 4
#define BTN_R2 6
#define BTN_UP 9
#define BTN_DOWN 10
#define BTN_LEFT 11
#define BTN_RIGHT 12
#define PORT 20
#define VSWITCH 30
#define BTN_INVALID 99