diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2023-10-11 16:04:33 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2023-10-11 16:04:33 +0200 |
| commit | 2a3923a173b54ca5aac3002230930863e6ccdbe0 (patch) | |
| tree | 4f97b5eeb1cfa79c4a12988dbf67b2d94d16d128 /src/wrapped | |
| parent | 3e882f3fd9c58a4a864b5a42b38db9288347e231 (diff) | |
| download | box64-2a3923a173b54ca5aac3002230930863e6ccdbe0.tar.gz box64-2a3923a173b54ca5aac3002230930863e6ccdbe0.zip | |
A bit more changes to cpuid bits and cpu identifications
Diffstat (limited to 'src/wrapped')
| -rw-r--r-- | src/wrapped/wrappedlibc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wrapped/wrappedlibc.c b/src/wrapped/wrappedlibc.c index cda4e97f..625ec087 100644 --- a/src/wrapped/wrappedlibc.c +++ b/src/wrapped/wrappedlibc.c @@ -1561,9 +1561,9 @@ void CreateCPUInfoFile(int fd) P; sprintf(buff, "bogomips\t: %g\n", getBogoMips()); P; - sprintf(buff, "flags\t\t: fpu cx8 sep cmov clflush mmx sse sse2 syscall tsc lahf_lm ssse3 ht tm lm fma fxsr cpuid pclmulqdq cx16 aes movbe pni sse4_1 popcnt\n"); + sprintf(buff, "flags\t\t: fpu cx8 sep cmov clflush mmx sse sse2 syscall tsc lahf_lm ssse3 ht tm lm fma fxsr cpuid pclmulqdq cx16 aes movbe pni sse4_1 lzcnt popcnt\n"); P; - sprintf(buff, "address sizes\t: 46 bits physical, 48 bits virtual\n"); + sprintf(buff, "address sizes\t: 48 bits physical, 48 bits virtual\n"); P; sprintf(buff, "\n"); P; |