Statistics
| Branch: | Revision:

root / hw / devices.h @ 87ecb68b

History | View | Annotate | Download (474 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
#endif