-
Notifications
You must be signed in to change notification settings - Fork 0
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
CPU #32
Comments
Due to loop, Cpu must running asynchronously along the form. https://msdn.microsoft.com/en-us/library/mt679047.aspx First I just do one, that go full speed. I do 100% speed later. For the speed of loop, some specs:
|
based on this: http://www.multigesture.net/articles/how-to-write-an-emulator-chip-8-interpreter/ // Emulation loop
for(;;)
{
// Emulate one cycle
// If the draw flag is set, update the screen
// Store key press state (Press and Release)
} |
(using same source than previous comment)
|
Bits are stored in little endian (reversed order) |
Remember that this issue is higly related with #2 |
Start CPUThis is now CPU general issue. This issue has at the moment highest priority.Sub-tasks:
The text was updated successfully, but these errors were encountered: