Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I refactored spc700.c: - Replaced jump table by a switch. I'm aware that they're essentially the same thing (given our range), but the generated code is ~9KB less, so... - Removed unnecessary inlining Doesn't seem to have any performance impact, if anything it is marginally faster... Possible improvements: - Grouping identical instructions will reduce size further, but it might break the switch optimizations - Finalizing the loop inside the function will certainly improve performance
- Loading branch information