I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 562cabfb authored by dev's avatar dev
Browse files

Fixed bad merge, re-added CPU flags hex output.

parent 4033361f
No related branches found
No related tags found
No related merge requests found
...@@ -866,7 +866,7 @@ public class CPUID { ...@@ -866,7 +866,7 @@ public class CPUID {
System.out.println("CPU Family: " + getCPUFamily()); System.out.println("CPU Family: " + getCPUFamily());
System.out.println("CPU Model: " + getCPUModel()); System.out.println("CPU Model: " + getCPUModel());
System.out.println("CPU Stepping: " + getCPUStepping()); System.out.println("CPU Stepping: " + getCPUStepping());
System.out.println("CPU Flags: " + getEDXCPUFlags()); System.out.println("CPU Flags: 0x" + Integer.toHexString(getEDXCPUFlags()));
CPUInfo c = getInfo(); CPUInfo c = getInfo();
System.out.println(" **More CPUInfo**"); System.out.println(" **More CPUInfo**");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment