Ejemplo n.º 1
0
 /// <summary>
 /// Initialises the (only) PIT device instance.
 /// </summary>
 public static void Init()
 {
     if (ThePIT == null)
     {
         ThePIT = new PIT();
     }
     ThePIT.Enable();
 }
Ejemplo n.º 2
0
Archivo: PIT.cs Proyecto: kztao/FlingOS
 /// <summary>
 /// Initialises the (only) PIT device instance.
 /// </summary>
 public static void Init()
 {
     if(ThePIT == null)
     {
         ThePIT = new PIT();
     }
     ThePIT.Enable();
 }