- Timestamp:
- May 2, 2010 7:30:18 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevAPIC.cpp
r28952 r28954 896 896 break; 897 897 case 0x0d: 898 val = apic->log_dest << 24;898 val = (uint64_t)apic->log_dest << 24; 899 899 break; 900 900 case 0x0e: 901 901 /* Bottom 28 bits are always 1 */ 902 val = ( apic->dest_mode << 28) | 0xfffffff;902 val = ((uint64_t)apic->dest_mode << 28) | 0xfffffff; 903 903 break; 904 904 case 0x0f:
Note:
See TracChangeset
for help on using the changeset viewer.