Beispiel #1
0
        /// <summary>
        /// Run emulation of NES
        /// </summary>
        public void Run()
        {
            while (IsRun)
            {
                _cpu.Execute();

                _ppu.Clock();
            }

            throw new NotImplementedException();
        }
Beispiel #2
0
 public void Execute()
 {
     cpu.Execute(0x100, 65536);
 }