/// <summary> /// Run emulation of NES /// </summary> public void Run() { while (IsRun) { _cpu.Execute(); _ppu.Clock(); } throw new NotImplementedException(); }
public void Execute() { cpu.Execute(0x100, 65536); }