mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
Break up vl.h.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3674 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
257514ddce
commit
87ecb68bdf
224 changed files with 2416 additions and 1842 deletions
19
hw/devices.h
Normal file
19
hw/devices.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
#ifndef QEMU_DEVICES_H
|
||||
#define QEMU_DEVICES_H
|
||||
|
||||
/* Devices that have nowhere better to go. */
|
||||
|
||||
/* smc91c111.c */
|
||||
void smc91c111_init(NICInfo *, uint32_t, qemu_irq);
|
||||
|
||||
/* ssd0323.c */
|
||||
int ssd0323_xfer_ssi(void *opaque, int data);
|
||||
void *ssd0323_init(DisplayState *ds, qemu_irq *cmd_p);
|
||||
|
||||
/* ads7846.c */
|
||||
struct ads7846_state_s;
|
||||
uint32_t ads7846_read(void *opaque);
|
||||
void ads7846_write(void *opaque, uint32_t value);
|
||||
struct ads7846_state_s *ads7846_init(qemu_irq penirq);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue