Changeset 92256 in vbox for trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TrapRmV86Init.c
- Timestamp:
- Nov 8, 2021 8:33:27 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-TrapRmV86Init.c
r82968 r92256 93 93 * BIOS installs their INT 10h handler there as well, and seemingly 94 94 * must be using it internally or something. 95 * 96 * We also keep 15h working for memory interfaces (see bs3-mode-BiosInt15*). 95 97 */ 96 98 for (iIvt = 0; iIvt < 256; iIvt++) 97 if (iIvt != 0x10 && iIvt != 0x 6d && iIvt != BS3_TRAP_SYSCALL)99 if (iIvt != 0x10 && iIvt != 0x15 && iIvt != 0x6d && iIvt != BS3_TRAP_SYSCALL) 98 100 { 99 101 paIvt[iIvt].off = (uint16_t)(uintptr_t)Bs3TrapRmV86GenericEntries + iIvt * 8;
Note:
See TracChangeset
for help on using the changeset viewer.