-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optimization needed for Raspberry Pi #45
Comments
Should we have the Makefile default to the |
I did some profiling with valgrind, the memory access functions get called A LOT: checkMemoryAccess () and mapAddr() getting called a lot. I'm going to look into some more. Main thing I think would help is avoiding the SUPERVISOR_MODE check in checkMemoryAccess() as it calls m68k_get_reg() I think inline'ing PutPixel will help too. I'll play around with some more. |
I'm inclined to say yes, the code's pretty stable now. |
OK, I just pushed a new Makefile that defaults to |
Testing on a Raspberry Pi 4, I encountered slowdown where the update wasn't getting done in the 10ms time slot allotted.
The text was updated successfully, but these errors were encountered: