Changeset 50166 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- Jan 22, 2014 6:21:22 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/keyboard.c
r48123 r50166 239 239 } 240 240 241 /* Wait for data */ 242 max=0xffff; 243 while ( ((inb(0x64) & 0x01) == 0) && (--max>0) ) outb(0x80, 0x31); 244 if (max==0x0) keyboard_panic(31); 241 /* Wait for reset to complete */ 242 while ( (inb(0x64) & 0x01) == 0 ) outb(0x80, 0x31); 245 243 246 244 if ((inb(0x60) != 0xaa && inb(0x60) != 0xaa)) {
Note:
See TracChangeset
for help on using the changeset viewer.