Exemplo n.º 1
0
 /// <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;
 }
Exemplo n.º 2
0
Arquivo: CPU.cs Projeto: kztao/FlingOS
 /// <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;
 }