diff options
author | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-30 02:14:00 +0000 |
---|---|---|
committer | balrog <balrog@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-04-30 02:14:00 +0000 |
commit | c824cacdb1aa8bfd9e057dd64b4b8a16f5727fff (patch) | |
tree | d759d74610a78d5d1710389b087a5c63ea81c564 /vl.h | |
parent | fd5a3b33d1f19b4859a8c528097abdbc4463e7e0 (diff) |
Maxim MAX1110/1111 ADC chip.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2755 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.h')
-rw-r--r-- | vl.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -1506,6 +1506,14 @@ uint32_t ads7846_read(void *opaque); void ads7846_write(void *opaque, uint32_t value); struct ads7846_state_s *ads7846_init(qemu_irq penirq); +/* max111x.c */ +struct max111x_s; +uint32_t max111x_read(void *opaque); +void max111x_write(void *opaque, uint32_t value); +struct max111x_s *max1110_init(qemu_irq cb); +struct max111x_s *max1111_init(qemu_irq cb); +void max111x_set_input(struct max111x_s *s, int line, uint8_t value); + /* PCMCIA/Cardbus */ struct pcmcia_socket_s { |