示例#1
0
文件: PIT.cs 项目: zrbruce/FlingOS
 /// <summary>
 /// Initialises the (only) PIT device instance.
 /// </summary>
 public static void Init()
 {
     if (ThePIT == null)
     {
         ThePIT = new PIT();
     }
     ThePIT.Enable();
 }
示例#2
0
文件: PIT.cs 项目: kztao/FlingOS
 /// <summary>
 /// Initialises the (only) PIT device instance.
 /// </summary>
 public static void Init()
 {
     if(ThePIT == null)
     {
         ThePIT = new PIT();
     }
     ThePIT.Enable();
 }