Statistics
| Branch: | Revision:

root / hw / devices.h @ cf0dbb21

History | View | Annotate | Download (570 Bytes)

1
#ifndef QEMU_DEVICES_H
2
#define QEMU_DEVICES_H
3

    
4
/* Devices that have nowhere better to go.  */
5

    
6
/* smc91c111.c */
7
void smc91c111_init(NICInfo *, uint32_t, qemu_irq);
8

    
9
/* ssd0323.c */
10
int ssd0323_xfer_ssi(void *opaque, int data);
11
void *ssd0323_init(DisplayState *ds, qemu_irq *cmd_p);
12

    
13
/* ads7846.c */
14
struct ads7846_state_s;
15
uint32_t ads7846_read(void *opaque);
16
void ads7846_write(void *opaque, uint32_t value);
17
struct ads7846_state_s *ads7846_init(qemu_irq penirq);
18

    
19
/* stellaris_input.c */
20
void stellaris_gamepad_init(int n, qemu_irq *irq, const int *keycode);
21

    
22
#endif