Changeset 39964 in vbox for trunk/src/VBox/Devices/Input
- Timestamp:
- Feb 2, 2012 5:50:36 PM (13 years ago)
- Location:
- trunk/src/VBox/Devices/Input
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Input/DevPS2.cpp
r39959 r39964 206 206 int32_t translate; 207 207 int32_t scancode_set; /* 1=XT, 2=AT, 3=PS/2 */ 208 xlat_state_txlat_state;208 int32_t xlat_state; 209 209 /* mouse state */ 210 210 int32_t mouse_write_cmd; -
trunk/src/VBox/Devices/Input/PS2Dev.h
r39963 r39964 49 49 XS_IDLE, /**< Starting state. */ 50 50 XS_BREAK, /**< F0 break byte was received. */ 51 XS_HIBIT, /**< Break code still active. */ 52 XS_32BIT_HACK = 0x7fffffff 51 XS_HIBIT /**< Break code still active. */ 53 52 } xlat_state_t; 54 53 55 xlat_state_t XlateAT2PC(xlat_state_t state, uint8_t scanIn, uint8_t *pScanOut);54 int32_t XlateAT2PC(int32_t state, uint8_t scanIn, uint8_t *pScanOut); 56 55 57 56 #endif -
trunk/src/VBox/Devices/Input/PS2K.cpp
r39960 r39964 1437 1437 * @return xlat_state_t New state of the translator. 1438 1438 */ 1439 xlat_state_t XlateAT2PC(xlat_state_t state, uint8_t scanIn, uint8_t *pScanOut)1439 int32_t XlateAT2PC(int32_t state, uint8_t scanIn, uint8_t *pScanOut) 1440 1440 { 1441 1441 uint8_t scan_in;
Note:
See TracChangeset
for help on using the changeset viewer.