Eliminate some uses of T2
[qemu/malc.git] / hw / devices.h
blob07c673b77d3fc901994d071cf93a30cacd7e1804
1 #ifndef QEMU_DEVICES_H
2 #define QEMU_DEVICES_H
4 /* Devices that have nowhere better to go. */
6 /* smc91c111.c */
7 void smc91c111_init(NICInfo *, uint32_t, qemu_irq);
9 /* ssd0323.c */
10 int ssd0323_xfer_ssi(void *opaque, int data);
11 void *ssd0323_init(DisplayState *ds, qemu_irq *cmd_p);
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);
19 /* stellaris_input.c */
20 void stellaris_gamepad_init(int n, qemu_irq *irq, const int *keycode);
22 #endif