示例#1
0
文件: Emulator.cs 项目: psykad/dNES
        public void Start()
        {
            _cpu.PowerOn();
            _bus.ResetRAM();

            while (true)
            {
                _cpu.Clock();
            }
        }