示例#1
0
文件: Form1.cs 项目: DualBrain/Chip8
 private void timer2_Tick(object sender, EventArgs e)
 {
     for (int i = 0; i < 50; i++)
     {
         cpu.RunCycle();
     }
     cpu.UpdateTimers();
     UpdateScreen();
 }