- Timestamp:
- Nov 25, 2010 2:12:51 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/DevPS2.cpp
r33928 r34371 282 282 283 283 /* update irq and KBD_STAT_[MOUSE_]OBF */ 284 /* XXX: not generating the irqs if KBD_MODE_DISABLE_KBD is set may be285 incorrect, but it avoids having to simulate exact delays */286 284 static void kbd_update_irq(KBDState *s) 287 285 { … … 319 317 else 320 318 { /* KBD_STAT_OBF set but KBD_STAT_MOUSE_OBF isn't. */ 321 if ( (s->mode & KBD_MODE_KBD_INT) && !(s->mode & KBD_MODE_DISABLE_KBD))319 if (s->mode & KBD_MODE_KBD_INT) 322 320 irq1_level = 1; 323 321 }
Note:
See TracChangeset
for help on using the changeset viewer.