diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-26 10:14:03 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-26 10:14:03 +0000 |
commit | daa579632da11bd3108326ed04de1c096fc5f849 (patch) | |
tree | 9d814b53aa966e30911cda5355c27d5dc9527269 /vl.h | |
parent | e80e1cc4b18d388227d2fa6b8551929a381d2490 (diff) |
PS2 mouse and keyboard separation (Paul Brook)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1658 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'vl.h')
-rw-r--r-- | vl.h | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -928,6 +928,14 @@ void do_usb_add(const char *devname); void do_usb_del(const char *devname); void usb_info(void); +/* ps2.c */ +void *ps2_kbd_init(void (*update_irq)(void *, int), void *update_arg); +void *ps2_mouse_init(void (*update_irq)(void *, int), void *update_arg); +void ps2_write_mouse(void *, int val); +void ps2_write_keyboard(void *, int val); +uint32_t ps2_read_data(void *); +void ps2_queue(void *, int b); + #endif /* defined(QEMU_TOOL) */ /* monitor.c */ |