Example #1
0
 /// <summary>
 /// Initialises the (only) PIT device instance.
 /// </summary>
 public static void Init()
 {
     if (ThePIT == null)
     {
         ThePIT = new PIT();
     }
     ThePIT.Enable();
 }
Example #2
0
File: PIT.cs Project: kztao/FlingOS
 /// <summary>
 /// Initialises the (only) PIT device instance.
 /// </summary>
 public static void Init()
 {
     if(ThePIT == null)
     {
         ThePIT = new PIT();
     }
     ThePIT.Enable();
 }