diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-05-22 07:59:01 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-05-22 07:59:01 +0000 |
commit | 956a3e6bb7386de48b642d4fee11f7f86a2fcf9a (patch) | |
tree | 8d9be8c251241710f00d158ef536c9b5badcccce /hw/vmmouse.c | |
parent | 9e42382fc14b999126f8cabb32761eb98153fd1b (diff) |
Compile pckbd only once
Use a qemu_irq to indicate A20 line changes. Move I/O port 92
to pckbd.c.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/vmmouse.c')
-rw-r--r-- | hw/vmmouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/vmmouse.c b/hw/vmmouse.c index bb6e6056d6..afebad9a0a 100644 --- a/hw/vmmouse.c +++ b/hw/vmmouse.c @@ -97,7 +97,7 @@ static void vmmouse_mouse_event(void *opaque, int x, int y, int dz, int buttons_ /* need to still generate PS2 events to notify driver to read from queue */ - ps2_mouse_fake_event(s->ps2_mouse); + i8042_isa_mouse_fake_event(s->ps2_mouse); } static void vmmouse_update_handler(VMMouseState *s) |