Changeset 26506 in vbox for trunk/src/VBox/Devices/Graphics/BIOS/vbe.c
- Timestamp:
- Feb 14, 2010 9:25:17 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/BIOS/vbe.c
r26003 r26506 86 86 //.ascii "Bochs VBE Display Adapter enabled" 87 87 .ascii "VirtualBox VBE Display Adapter enabled" 88 .byte 89 .byte 90 .byte 88 .byte 0x0a,0x0d 89 .byte 0x0a,0x0d 90 .byte 0x00 91 91 92 92 _no_vbebios_info_string: 93 93 .ascii "No VirtualBox VBE support available!" 94 .byte 95 .byte 96 .byte 0x0094 .byte 0x0a,0x0d 95 .byte 0x0a,0x0d 96 .byte 0x00 97 97 98 98 #ifdef DEBUG … … 101 101 .ascii VBOX_VERSION_STRING 102 102 .ascii " VBE Display Adapter" 103 .byte 103 .byte 0x0a,0x0d, 0x00 104 104 #endif 105 105 … … 1207 1207 1208 1208 if (vbe2_info) 1209 1209 { 1210 1210 // OEM Stuff 1211 1211 write_word(ES, DI + RT_OFFSETOF(VbeInfoBlock, OemSoftwareRev), VBE_OEM_SOFTWARE_REV); … … 1268 1268 1269 1269 if (vbe2_info) 1270 1270 { 1271 1271 // OEM Stuff 1272 1272 vbe_info_block.OemSoftwareRev = VBE_OEM_SOFTWARE_REV; … … 1281 1281 memcpyb(ES, DI, ss, &vbe_info_block, sizeof(vbe_info_block)); 1282 1282 } 1283 1284 1283 else 1284 { 1285 1285 // copy updates in vbe_info_block back (VBE 1.x compatibility) 1286 1286 memcpyb(ES, DI, ss, &vbe_info_block, 256); 1287 1287 } 1288 1288 #endif /* !VBOX */ 1289 1289
Note:
See TracChangeset
for help on using the changeset viewer.