Changeset 60681 in vbox for trunk/src/VBox
- Timestamp:
- Apr 24, 2016 4:40:23 PM (9 years ago)
- Location:
- trunk/src/VBox/ValidationKit/bootsectors
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3-cpu-basic-2-template.c
r60680 r60681 1682 1682 for (off = cbIdtr + 4; off >= -cbIdtr - 4; off--) 1683 1683 { 1684 Bs3MemSet(pbTest, bFiller, 32);1684 Bs3MemSet(pbTest, bFiller, 48); 1685 1685 Bs3RegCtxSetGrpSegFromCurPtr(&Ctx, &Ctx.rbx, pWorker->fSs ? &Ctx.ss : &Ctx.ds, &pbTest[off]); 1686 1686 Bs3TrapSetJmpAndRestore(&Ctx, &TrapCtx); … … 2161 2161 BS3_DECL_FAR(uint8_t) TMPL_NM(bs3CpuBasic2_sidt)(uint8_t bMode) 2162 2162 { 2163 //if (bMode == BS3_MODE_PE16_V86) 2164 //if (bMode & BS3_MODE_CODE_V86) 2163 if (bMode == BS3_MODE_LM64) 2165 2164 { 2166 2165 union … … 2195 2194 BS3_DECL_FAR(uint8_t) TMPL_NM(bs3CpuBasic2_sgdt)(uint8_t bMode) 2196 2195 { 2196 if (bMode == BS3_MODE_LM64) 2197 { 2197 2198 union 2198 2199 { … … 2218 2219 */ 2219 2220 Bs3TrapInit(); 2221 } 2220 2222 return 0; 2221 2223 } -
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3kit.h
r60676 r60681 1169 1169 { \ 1170 1170 BS3XPTR XPtr; \ 1171 a_Type *pTyped; \1172 1171 } a_Name 1173 1172 #else … … 1843 1842 uint32_t cFreeChunks; 1844 1843 } BS3SLABHEAD; 1844 AssertCompileSize(BS3SLABHEAD, 16); 1845 1845 /** Pointer to a slab list head. */ 1846 1846 typedef BS3SLABHEAD BS3_FAR *PBS3SLABHEAD;
Note:
See TracChangeset
for help on using the changeset viewer.