Changeset 66158 in vbox
- Timestamp:
- Mar 17, 2017 10:15:20 PM (8 years ago)
- Location:
- trunk/src/VBox/ValidationKit/bootsectors/bs3kit
- Files:
-
- 2 edited
-
bs3-cmn-PagingProtect.c (modified) (1 diff)
-
bs3-cmn-SelFar32ToFlat32.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-PagingProtect.c
r64710 r66158 346 346 */ 347 347 else 348 return Bs3SwitchFromV86To16BitAndCallC((FPFNBS3FAR)Bs3PagingProtect_f16, sizeof(uint64_t) *4, uFlat, cb, fSet, fClear);348 return Bs3SwitchFromV86To16BitAndCallC((FPFNBS3FAR)Bs3PagingProtect_f16, sizeof(uint64_t) * 4, uFlat, cb, fSet, fClear); 349 349 #endif 350 350 return VINF_SUCCESS; -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-SelFar32ToFlat32.c
r60527 r66158 31 31 BS3_CMN_DEF(uint32_t, Bs3SelFar32ToFlat32,(uint32_t off, uint16_t uSel)) 32 32 { 33 if ( g_bBs3CurrentMode == BS3_MODE_RM)33 if (BS3_MODE_IS_RM_OR_V86(g_bBs3CurrentMode)) 34 34 return ((uint32_t)uSel << 4) + off; 35 35 return Bs3SelProtFar32ToFlat32(off, uSel);
Note:
See TracChangeset
for help on using the changeset viewer.

