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
Reading stack machine assembly demands considerable mental effort to track stack state, so it would be beneficial to print the stack’s content. Starting with VRs is a good initial approach, and we can explore enhancements later.
e.g. for
%10 = ADD %9, %8
we can print
<preceeding instruction> ; [%9 %8]
ADD ; [%10]
The scope of this ticket is to implement VR display, with follow-up tickets planned for future improvements.
The text was updated successfully, but these errors were encountered:
Reading stack machine assembly demands considerable mental effort to track stack state, so it would be beneficial to print the stack’s content. Starting with VRs is a good initial approach, and we can explore enhancements later.
e.g. for
we can print
The scope of this ticket is to implement VR display, with follow-up tickets planned for future improvements.
The text was updated successfully, but these errors were encountered: