Changeset 44384 in vbox for trunk/src/VBox/Devices/PC/BIOS
- Timestamp:
- Jan 25, 2013 4:05:08 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 83355
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/system.c
r41759 r44384 729 729 #ifdef VBOX /* Don't succeeded if no memory above 4 GB. */ 730 730 /* Mapping of memory above 4 GB if present. 731 Note: set_e820_range needs do no borrowing in the 732 subtraction because of the nice numbers. */ 731 Note1: set_e820_range needs do no borrowing in the 732 subtraction because of the nice numbers. 733 Note2* works only up to 1TB because of uint8_t for 734 the upper bits!*/ 733 735 if (extra_highbits_memory_size || extra_lowbits_memory_size) 734 736 { 735 737 set_e820_range(ES, DI, 736 738 0x00000000L, extra_lowbits_memory_size, 737 1 /* GB*/, extra_highbits_memory_size + 1 /*GB*/, 1);739 1 /*x4GB*/, extra_highbits_memory_size + 1 /*x4GB*/, 1); 738 740 EBX = 0; 739 741 }
Note:
See TracChangeset
for help on using the changeset viewer.