pushfoo / eightdad

A Chip-8 interpreter in python that may include other tools in the future
BSD 2-Clause "Simplified" License
0 stars 0 forks source link

Fix Program Counter Behavior to match standard #68

Open pushfoo opened 3 years ago

pushfoo commented 3 years ago

The standard for the Program Counter across architectures is that it points to the next instruction to be executed. The current implementation runs correctly, but it doesn't follow this standard. This makes it confusing for other people to read and should be fixed.