You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once you hit a breakpoint a subsequent run command remains stuck at the breakpoint - unless you "break off". There is an easy fix for this: Move the breakpoint check in the run loop from the top of the loop to the bottom of the loop. This will still hit the initial breakpoint but will cause subsequent run command to execute at least one instruction - getting past the breakpoint. Here is the changed code from processor-runloop.h (at the bottom):
Once you hit a breakpoint a subsequent run command remains stuck at the breakpoint - unless you "break off". There is an easy fix for this: Move the breakpoint check in the run loop from the top of the loop to the bottom of the loop. This will still hit the initial breakpoint but will cause subsequent run command to execute at least one instruction - getting past the breakpoint. Here is the changed code from processor-runloop.h (at the bottom):
The text was updated successfully, but these errors were encountered: