Changeset 65595 in vbox for trunk/src/VBox/ValidationKit
- Timestamp:
- Feb 2, 2017 7:25:28 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 113264
- Location:
- trunk/src/VBox/ValidationKit/bootsectors/bs3kit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-Trap16SetGate.c
r62484 r65595 43 43 pIdte->Gate.u16OffsetHigh = 0; 44 44 pIdte->Gate.u16Sel = uSel; 45 pIdte->Gate.u 4ParmCount = cParams;45 pIdte->Gate.u5ParmCount = cParams; 46 46 pIdte->Gate.u4Type = bType; 47 47 pIdte->Gate.u2Dpl = bDpl; 48 pIdte->Gate.u 4Reserved = 0;48 pIdte->Gate.u3Reserved = 0; 49 49 pIdte->Gate.u1DescType = 0; /* system */ 50 50 pIdte->Gate.u1Present = 1; -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-Trap32SetGate.c
r62484 r65595 43 43 pIdte->Gate.u16OffsetHigh = (uint16_t)(off >> 16); 44 44 pIdte->Gate.u16Sel = uSel; 45 pIdte->Gate.u 4ParmCount = cParams;45 pIdte->Gate.u5ParmCount = cParams; 46 46 pIdte->Gate.u4Type = bType; 47 47 pIdte->Gate.u2Dpl = bDpl; 48 pIdte->Gate.u 4Reserved = 0;48 pIdte->Gate.u3Reserved = 0; 49 49 pIdte->Gate.u1DescType = 0; /* system */ 50 50 pIdte->Gate.u1Present = 1;
Note:
See TracChangeset
for help on using the changeset viewer.