Changeset 60210 in vbox
- Timestamp:
- Mar 27, 2016 11:25:07 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/bs3-system-data.asm
r60097 r60210 194 194 BS3_GLOBAL_DATA Bs3Gdte_R %+ %1 %+ _First, 80h 195 195 BS3_GLOBAL_DATA Bs3Gdte_R %+ %1 %+ _CS16, 8 ; Entry 100h 196 dw 0ffffh, 00000h; 16-bit code segment with base 010000h.197 dw 09b01h | (%1 << 0dh) , 00000h196 dw 0ffffh, (0xffff & BS3_ADDR_BS3TEXT16) ; 16-bit code segment with base 010000h. 197 dw 09b01h | (%1 << 0dh) | (0xff & (BS3_ADDR_BS3TEXT16 >> 16)), 00000h | (0xff00 & (BS3_ADDR_BS3TEXT16 >> 16)) 198 198 199 199 BS3_GLOBAL_DATA Bs3Gdte_R %+ %1 %+ _DS16, 8 ; Entry 108h … … 226 226 227 227 BS3_GLOBAL_DATA Bs3Gdte_R %+ %1 %+ _CS16_EO, 8 ; Entry 140h 228 dw 0fff eh, 00000h ; 16-bit code segment with base 0, not accessed, execute only, short limit.229 dw 09800h | (%1 << 0dh) , 00000h228 dw 0ffffh, (0xffff & BS3_ADDR_BS3TEXT16) ; 16-bit code segment with base 01000h, not accessed, execute only, short limit. 229 dw 09800h | (%1 << 0dh) | (0xff & (BS3_ADDR_BS3TEXT16 >> 16)), 00000h | (0xff00 & (BS3_ADDR_BS3TEXT16 >> 16)) 230 230 231 231 BS3_GLOBAL_DATA Bs3Gdte_R %+ %1 %+ _CS16_CNF, 8 ; Entry 148h 232 dw 0fff eh, 00000h ; 16-bit conforming code segment with base 0, not accessed, execute only, short limit.233 dw 09e00h | (%1 << 0dh) , 00000h232 dw 0ffffh, (0xffff & BS3_ADDR_BS3TEXT16) ; 16-bit code segment with base 01000h, not accessed, execute only, short limit. 233 dw 09e00h | (%1 << 0dh) | (0xff & (BS3_ADDR_BS3TEXT16 >> 16)), 00000h | (0xff00 & (BS3_ADDR_BS3TEXT16 >> 16)) 234 234 235 235 BS3_GLOBAL_DATA Bs3Gdte_R %+ %1 %+ _CS16_CND_EO, 8 ; Entry 150h
Note:
See TracChangeset
for help on using the changeset viewer.