Visual Studioで、アセンブリ言語コードをデバッグするときに配列の内容を表示することはできますか?num
「監視」ウィンドウに配列を追加する方法はすでに知っていますが、配列の内容を監視する方法を理解しようとしています。Visual Studioの[監視]ウィンドウに配列を追加するsword
ことは可能ですが、プログラムをステップ実行しながら配列の内容を表示することは可能ですか?
.686p
.model flat,stdcall
.stack 2048
.data
num sword 1000,-1000,2000,-2000 ;I want to keep track of each value in this array while debugging.
;Is it possible to display the contents of all indices of num while debugging?
ExitProcess proto, exitcode:dword
.code
start:![Lots of ?'s are showing up here instead of the actual value of the array][1]
mov ax, num;
mov ax, [num+1];
invoke ExitProcess, 0
end start