dbrock178
November 7th, 2010, 00:52
Hello all,
I am experimenting with an example problem shown below in Visual Studio 2010. I am expecting the ZR value to change when eax goes to zero, however, it doesn't change. From what I read in this article (
http://msdn.microsoft.com/en-us/library/kwydd1t7%28VS.80%29.aspx) it sounds like the ZR value in the registry window is the same as ZF registry, is this true?
Thank you,
dbrock
I am experimenting with an example problem shown below in Visual Studio 2010. I am expecting the ZR value to change when eax goes to zero, however, it doesn't change. From what I read in this article (
http://msdn.microsoft.com/en-us/library/kwydd1t7%28VS.80%29.aspx) it sounds like the ZR value in the registry window is the same as ZF registry, is this true?
Thank you,
dbrock
Code:
INCLUDE Irvine32.inc
.data
var BYTE 0FFh
.code
main PROC
mov eax,1
sub eax,1
exit
main ENDP
end main