Lines Matching defs:aux
140 #define AUX_ENABLE_DEV 0xF4 /* Enable aux device */
141 #define AUX_DISABLE_DEV 0xF5 /* Disable aux device */
143 #define AUX_RESET 0xFF /* Reset aux device */
286 /* Keyboard data has priority if both kbd and aux data is available. */
368 static void kbd_queue(KBDState *s, int b, int aux)
374 if (aux == 1)
376 else if (aux == 2)
383 switch (aux)
405 AssertMsgFailed(("aux=%d\n", aux));
427 /* Set the aux OBF and raise IRQ. */
633 int aux = fToCmdQueue ? 1 : 2;
647 kbd_queue(s, b, aux);
648 kbd_queue(s, dx1 & 0xff, aux);
649 kbd_queue(s, dy1 & 0xff, aux);
654 int aux = fToCmdQueue ? 1 : 2;
660 kbd_queue(s, dz1 & 0xff, aux);
665 int aux = fToCmdQueue ? 1 : 2;
680 kbd_queue(s, 0x40 | (dw1 & 0x3f), aux);
692 kbd_queue(s, (fButtonsHigh << 1) | u4Low, aux);
1020 /* Automatically enables aux interface. */
1603 /* LUN #1: aux/mouse */
1667 /* LUN #1: aux/mouse */
1786 rc = kbdAttach(pDevIns, 1 /* aux/mouse LUN # */, PDM_TACH_FLAGS_NOT_HOT_PLUG);
1815 "LUN #1 is the aux/mouse connector.",