Search found 1 match
- Wed Jul 10, 2013 3:07 am
- Forum: NESemdev
- Topic: CPU cycle counting?
- Replies: 8
- Views: 5700
Re: CPU cycle counting?
1. It's a way to keep track of "time", i.e. 29780 2/3 CPU cycles per PPU frame, but more so it's a way to keep the CPU, PPU, and APU in sync. Cycles are easily handled by only incrementing them on CPU reads and writes (if desired you can run the PPU to catch up at this time). 2. Page cross...