Closed as not planned
Closed as not planned

Description
Area of Cosmos - What area of Cosmos are we dealing with? Cosmos.Core.CPU
Expected Behaviour - What do you think that should happen? It Returns 8192
Actual Behaviour - What unexpectedly happens? It Returns 4096
Reproduction - How did you get this error to appear? public static string NeoFetch()
{
uint RAM = Cosmos.Core.CPU.GetAmountOfRAM();
Thread.Sleep(2); // Prevent Deadlock
string CPU = Cosmos.Core.CPU.GetCPUBrandString() + " | " + Cosmos.Core.CPU.GetCPUVendorName();
return "Neofetch:" + "\n\tSystem OS: " + Kernel.Name + " " + Kernel.Version + " " + Kernel.Code + "\n\tSystem RAM: " + RAM + " MB" + "\n\tSystem CPU: " + CPU;
}