Changeset 45023 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Mar 13, 2013 3:29:58 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r44877 r45023 5626 5626 5627 5627 /* 5628 * Register I/O ports , ROM and save state.5628 * Register I/O ports. 5629 5629 */ 5630 5630 rc = PDMDevHlpIOPortRegister(pDevIns, 0x3c0, 16, NULL, vgaIOPortWrite, vgaIOPortRead, NULL, NULL, "VGA - 3c0"); … … 5768 5768 } 5769 5769 5770 const uint8_t *pu8VgaBiosBinary = NULL;5771 uint64_t cbVgaBiosBinary;5772 5770 /* 5773 5771 * Determine the VGA BIOS ROM size, open specified ROM file in the process. … … 5834 5832 /* If we were unable to get the data from file for whatever reason, fall 5835 5833 back to the built-in ROM image. */ 5836 uint32_t fFlags = 0; 5834 const uint8_t *pu8VgaBiosBinary; 5835 uint64_t cbVgaBiosBinary; 5836 uint32_t fFlags = 0; 5837 5837 if (pThis->pu8VgaBios == NULL) 5838 5838 { … … 5855 5855 return rc; 5856 5856 5857 /* save */ 5857 /* 5858 * Saved state. 5859 */ 5858 5860 rc = PDMDevHlpSSMRegisterEx(pDevIns, VGA_SAVEDSTATE_VERSION, sizeof(*pThis), NULL, 5859 5861 NULL, vgaR3LiveExec, NULL, … … 5863 5865 return rc; 5864 5866 5865 /* PCI */ 5867 /* 5868 * PCI device registration. 5869 */ 5866 5870 rc = PDMDevHlpPCIRegister(pDevIns, &pThis->Dev); 5867 5871 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.