Changeset 26506 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- Feb 14, 2010 9:25:17 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 57677
- Location:
- trunk/src/VBox/Devices/Graphics/BIOS
- Files:
-
- 2 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 -
trunk/src/VBox/Devices/Graphics/BIOS/vgabios.c
r26003 r26506 147 147 148 148 vgabios_start: 149 .byte 0x55, 0xaa/* BIOS signature, required for BIOS extensions */150 151 .byte 0x40/* BIOS extension length in units of 512 bytes */149 .byte 0x55, 0xaa /* BIOS signature, required for BIOS extensions */ 150 151 .byte 0x40 /* BIOS extension length in units of 512 bytes */ 152 152 153 153 … … 160 160 .ascii "VirtualBox VGA BIOS" 161 161 #else 162 .ascii 163 #endif 164 .ascii 165 .byte 162 .ascii "Plex86/Bochs VGABios" 163 #endif 164 .ascii " " 165 .byte 0x00 166 166 167 167 // Info from Bart Oldeman … … 173 173 vgabios_version: 174 174 #ifndef VGABIOS_VERS 175 .ascii 175 .ascii "current-cvs" 176 176 #else 177 177 .ascii VGABIOS_VERS 178 178 #endif 179 .ascii 179 .ascii " " 180 180 181 181 vgabios_date: 182 182 .ascii VGABIOS_DATE 183 183 .byte 0x0a,0x0d 184 .byte 184 .byte 0x00 185 185 #endif 186 186 187 187 #ifndef VBOX 188 188 vgabios_copyright: 189 .ascii 190 .byte 191 .byte 189 .ascii "(C) 2003 the LGPL VGABios developers Team" 190 .byte 0x0a,0x0d 191 .byte 0x00 192 192 #endif 193 193 194 194 #ifndef VBOX 195 195 vgabios_license: 196 .ascii 197 .byte 198 .byte 199 .byte 196 .ascii "This VGA/VBE Bios is released under the GNU LGPL" 197 .byte 0x0a,0x0d 198 .byte 0x0a,0x0d 199 .byte 0x00 200 200 201 201 vgabios_website: 202 .ascii 203 .byte 202 .ascii "Please visit :" 203 .byte 0x0a,0x0d 204 204 ;;.ascii " . http://www.plex86.org" 205 ;;.byte 206 .ascii 207 .byte 208 .ascii 209 .byte 210 .byte 211 .byte 205 ;;.byte 0x0a,0x0d 206 .ascii " . http://bochs.sourceforge.net" 207 .byte 0x0a,0x0d 208 .ascii " . http://www.nongnu.org/vgabios" 209 .byte 0x0a,0x0d 210 .byte 0x0a,0x0d 211 .byte 0x00 212 212 #endif 213 213
Note:
See TracChangeset
for help on using the changeset viewer.