gianlucag / mos6502

A fast & simple MOS 6502 CPU emulator written in C++
MIT License
286 stars 56 forks source link

The README seems out-of-date #12

Open omarandlorraine opened 2 years ago

omarandlorraine commented 2 years ago

There is reference to the Run method, but it doesn't match the code.

The README says void Run(uint32_t n); but the code says void Run(int32_t cycles, uint64_t& cycleCount, CycleMethod cycleMethod = CYCLE_COUNT);.

gianlucag commented 1 year ago

Cycle counting was added as a feature but the README wasn't updated to reflect that.