Changeset 82111 in vbox for trunk/src/VBox/Devices/Graphics/BIOS
- Timestamp:
- Nov 22, 2019 10:38:23 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 134921
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/BIOS/vgabios.c
r75149 r82111 1792 1792 size += 3 + 256 * 3 + 1; 1793 1793 1794 /// @todo Is this supposed to be in 1-byte or 64-byte units?1795 1794 return size; 1796 1795 } … … 1798 1797 static void vga_get_video_state_size(uint16_t state, uint16_t STACK_BASED *size) 1799 1798 { 1800 *size = biosfn_read_video_state_size2(state); 1799 /* The size is the number of 64-byte blocks required to save the state. */ 1800 *size = (biosfn_read_video_state_size2(state) + 63) / 64; 1801 1801 } 1802 1802
Note:
See TracChangeset
for help on using the changeset viewer.