Changeset 39914 in vbox
- Timestamp:
- Jan 31, 2012 10:09:41 AM (13 years ago)
- Location:
- trunk/src/VBox/Devices/PC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS-new/keyboard.c
r38833 r39914 474 474 475 475 case 0x53: /* Del press */ 476 if ((shift_flags & 0x0 f) == 0x0c)476 if ((shift_flags & 0x0c) == 0x0c) 477 477 jmp_post(); 478 478 /* fall through */ -
trunk/src/VBox/Devices/PC/BIOS/rombios.c
r39109 r39914 5361 5361 #ifdef VBOX 5362 5362 case 0x53: /* Del press */ 5363 if ((shift_flags & 0x0 f) == 0x0c)5363 if ((shift_flags & 0x0c) == 0x0c) 5364 5364 { 5365 5365 ASM_START
Note:
See TracChangeset
for help on using the changeset viewer.