Changeset 216
- Timestamp:
- Nov 9, 2017, 11:25:45 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/bootcode/regular/driveio.asm ¶
r175 r216 308 308 ;!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 309 309 call DriveIO_LoadSector 310 311 ; ----------------------------------------------------- [Check for GPT] 312 ; Check the 4 P-Table entries for a GPT identifier 313 ; If found, set CY and exit to indicate no partitions are found. 314 ; This prevents the disk from appearing in the menu with an 'unknown' 315 ; partition identifier. 316 cmp byte ptr [si+01c2h], 0eeh ; Check Entry #1 317 stc 318 jz DIOLP_Success 319 cmp byte ptr [si+01d2h], 0eeh ; Check Entry #2 320 stc 321 jz DIOLP_Success 322 cmp byte ptr [si+01e2h], 0eeh ; Check Entry #3 323 stc 324 jz DIOLP_Success 325 cmp byte ptr [si+01f2h], 0eeh ; Check Entry #4 326 stc 327 jz DIOLP_Success 310 328 311 329 clc
Note:
See TracChangeset
for help on using the changeset viewer.