- Timestamp:
- 07/16/11 19:27:07 (13 years ago)
- Location:
- ps/trunk/source/lib/sysdep
- Files:
-
- 2 edited
-
acpi.cpp (modified) (1 diff)
-
arch/x86_x64/x86_x64.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ps/trunk/source/lib/sysdep/acpi.cpp
r9362 r9846 64 64 u8 sum = 0; 65 65 for(PCV_u8 p = buf; p < buf+numBytes; p++) 66 sum = u8( sum + *p);66 sum = u8((sum + *p) & 0xFF); 67 67 return sum; 68 68 } -
ps/trunk/source/lib/sysdep/arch/x86_x64/x86_x64.cpp
r9410 r9846 46 46 47 47 #define CPUID_INTRINSIC 0 48 #if MSC_VERSION > 1500 || (MSC_VERSION == 1500 && _MSC_FULL_VER >= 150030729)// __cpuidex available on VC10+ and VC9 SP1 (allows setting ecx beforehand)48 #if defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 150030729 // __cpuidex available on VC10+ and VC9 SP1 (allows setting ecx beforehand) 49 49 # undef CPUID_INTRINSIC 50 50 # define CPUID_INTRINSIC 1
Note:
See TracChangeset
for help on using the changeset viewer.
