1/*
2 * Gamepad style buttons connected to IRQ/GPIO lines
3 *
4 * Copyright (c) 2007 CodeSourcery.
5 * Written by Paul Brook
6 *
7 * This work is licensed under the terms of the GNU GPL, version 2 or later.
8 * See the COPYING file in the top-level directory.
9 */
10
11#ifndef HW_INPUT_GAMEPAD_H
12#define HW_INPUT_GAMEPAD_H
13
14
15/* stellaris_input.c */
16void stellaris_gamepad_init(int n, qemu_irq *irq, const int *keycode);
17
18#endif
19