Changeset 60218 in vbox for trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-SwitchTo16Bit.asm
- Timestamp:
- Mar 28, 2016 12:26:40 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-cmn-SwitchTo16Bit.asm
r60000 r60218 45 45 ; Check g_bBs3CurrentMode whether we're in v8086 mode or not. 46 46 mov al, [BS3_DATA16_WRT(g_bBs3CurrentMode)] 47 and al, BS3_MODE_CODE_MASK 48 cmp al, BS3_MODE_CODE_V86 49 jne .ret_16bit 47 test al, BS3_MODE_CODE_V86 48 jz .ret_16bit 50 49 51 50 ; Switch to ring-0 if v8086 mode.
Note:
See TracChangeset
for help on using the changeset viewer.