/// <summary> /// Initialises the default CPU. /// </summary> /// <remarks> /// Currently just straight up initialises the x86 CPU class. Should actually detect, /// either at compile time or runtime, which CPU artchitecture the OS is being run on. /// </remarks> public static void InitDefault() { CPUs.CPUx86_32.Init(); Default = CPUs.CPUx86_32.TheCPU; }