diff options
Diffstat (limited to 'hw/pc.h')
| -rw-r--r-- | hw/pc.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/hw/pc.h b/hw/pc.h index a048768d21..d5d2f42f96 100644 --- a/hw/pc.h +++ b/hw/pc.h @@ -65,11 +65,13 @@ void hpet_pit_disable(void); void hpet_pit_enable(void); /* vmport.c */ -void vmport_init(void); +static inline void vmport_init(void) +{ + isa_create_simple("vmport"); +} void vmport_register(unsigned char command, IOPortReadFunc *func, void *opaque); - -/* vmmouse.c */ -void *vmmouse_init(void *m); +void vmmouse_get_data(uint32_t *data); +void vmmouse_set_data(const uint32_t *data); /* pckbd.c */ |