Debugging ASM with Visual Studio - Register content will not display

前端 未结 2 404
灰色年华
灰色年华 2021-01-06 12:44

I have been working on an assembly language project for a class and though I have finally been able to work through all problems in this code ( I believe ), I now can\'t see

相关标签:
2条回答
  • 2021-01-06 13:47

    Thanks to @Jester I was able to see the registers window. (See how to use the registers window in the Visual Studio docs.)

    It may be trivial but I will state it nonetheless. In order to see the register window you need to input a breakpoint before the exit of the program or write your program to pause on it's own using the Irvine wait macro, or call ReadChar, or similar.

    After it pauses, you can reach the register window by going to debug window and windows sub-window, and voila, you have the register contents visible.

    0 讨论(0)
  • 2021-01-06 13:48

    Right click in the register window and select UC and all data you want to display

    0 讨论(0)
提交回复
热议问题