Changeset 60727 in vbox for trunk/src/VBox/ValidationKit/bootsectors
- Timestamp:
- Apr 27, 2016 10:32:57 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 106915
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/bootsectors/bs3kit/VBoxBs3ObjConverter.cpp
r60726 r60727 887 887 { 888 888 if (idxFrame >= 128) 889 abFixup[off++] = (uint8_t)(idxFrame >> 8) ;889 abFixup[off++] = (uint8_t)(idxFrame >> 8) | 0x80; 890 890 abFixup[off++] = (uint8_t)idxFrame; 891 891 } 892 892 /* Target Datum */ 893 893 if (idxTarget >= 128) 894 abFixup[off++] = (uint8_t)(idxTarget >> 8) ;894 abFixup[off++] = (uint8_t)(idxTarget >> 8) | 0x80; 895 895 abFixup[off++] = (uint8_t)idxTarget; 896 896 /* Target Displacement */
Note:
See TracChangeset
for help on using the changeset viewer.