mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
Maxim MAX1110/1111 ADC chip.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2755 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
fd5a3b33d1
commit
c824cacdb1
2 changed files with 144 additions and 0 deletions
8
vl.h
8
vl.h
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue