Changeset 75232 in vbox for trunk/src/VBox/Devices/PC/BIOS
- Timestamp:
- Nov 2, 2018 6:21:27 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/system.c
r75229 r75232 465 465 AX = (inb_cmos(0x31) << 8) | inb_cmos(0x30); 466 466 467 #if VBOX_BIOS_CPU >= 80386 467 468 // According to Ralf Brown's interrupt the limit should be 15M, 468 469 // but real machines mostly return max. 63M. 469 470 if(AX > 0xffc0) 470 471 AX = 0xffc0; 472 #else 473 // An AT compatible cannot have more than 15M extended memory. 474 // If more is reported, some software (e.g. Windows 3.1) gets 475 // quite upset. 476 if(AX > 0x3c00) 477 AX = 0x3c00; 478 #endif 471 479 472 480 CLEAR_CF();
Note:
See TracChangeset
for help on using the changeset viewer.