summaryrefslogtreecommitdiff
path: root/apps/plugins/chip8.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/chip8.c')
-rw-r--r--apps/plugins/chip8.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/plugins/chip8.c b/apps/plugins/chip8.c
index 97d8351fe9..470a8e4c89 100644
--- a/apps/plugins/chip8.c
+++ b/apps/plugins/chip8.c
@@ -1193,6 +1193,18 @@ CONFIG_KEYPAD == MROBE500_PAD
1193#define CHIP8_KEY8 BUTTON_VOL_DOWN 1193#define CHIP8_KEY8 BUTTON_VOL_DOWN
1194#define CHIP8_KEY9 BUTTON_VOL_UP 1194#define CHIP8_KEY9 BUTTON_VOL_UP
1195 1195
1196#elif (CONFIG_KEYPAD == SAMSUNG_YPR0_PAD)
1197#define CHIP8_OFF (BUTTON_BACK|BUTTON_REPEAT)
1198#define CHIP8_KEY1 BUTTON_MENU
1199#define CHIP8_KEY2 BUTTON_UP
1200#define CHIP8_KEY3 BUTTON_DOWN
1201#define CHIP8_KEY4 BUTTON_LEFT
1202#define CHIP8_KEY5 BUTTON_SELECT
1203#define CHIP8_KEY6 BUTTON_RIGHT
1204#define CHIP8_KEY7 BUTTON_BACK
1205#define CHIP8_KEY8 BUTTON_POWER
1206#define CHIP8_KEY9 BUTTON_USER
1207
1196#else 1208#else
1197#error No keymap defined! 1209#error No keymap defined!
1198#endif 1210#endif